diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2019-01-08 21:04:08 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2019-01-08 21:04:08 (GMT) |
commit | 6dac183be1cdcc0a13966343e2c40c3ff56a3810 (patch) | |
tree | 802a6a87435da647463c945cf3571d52a84aad55 /tkimg/tiff/win | |
parent | dbbb38af9cefef9e9e1a03c97945ee59063aa782 (diff) | |
download | blt-6dac183be1cdcc0a13966343e2c40c3ff56a3810.zip blt-6dac183be1cdcc0a13966343e2c40c3ff56a3810.tar.gz blt-6dac183be1cdcc0a13966343e2c40c3ff56a3810.tar.bz2 |
update tkimg 1.4.7
Diffstat (limited to 'tkimg/tiff/win')
-rw-r--r-- | tkimg/tiff/win/makefile.vc | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tkimg/tiff/win/makefile.vc b/tkimg/tiff/win/makefile.vc new file mode 100644 index 0000000..62af931 --- /dev/null +++ b/tkimg/tiff/win/makefile.vc @@ -0,0 +1,37 @@ +#------------------------------------------------------------- -*- makefile -*- +# +# Makefile +# +# Basic build, test and install +# nmake /f makefile.vc INSTALLDIR=c:\tcl TCLDIR=c:\path\to\tcl\sources TKDIR=c:\path\to\tk\sources +# nmake /f makefile.vc INSTALLDIR=c:\tcl test TCLDIR=c:\path\to\tcl\sources TKDIR=c:\path\to\tk\sources +# nmake /f makefile.vc INSTALLDIR=c:\tcl install TCLDIR=c:\path\to\tcl\sources TKDIR=c:\path\to\tk\sources +# Note this extension needs both Tcl and Tk *source* to build. +# +# For other build options (debug, static etc.), +# See TIP 477 (https://core.tcl.tk/tips/doc/trunk/tip/477.md) for +# detailed documentation. +# +#------------------------------------------------------------------------------ + +PHIMGTYPE = tiff +PRJ_DEFINES = -D_CRT_SECURE_NO_DEPRECATE -wd4996 -wd4267 +REQUIRE_ZLIB = 1 +REQUIRE_LIBJPEG = 1 +REQUIRE_LIBTIFF = 1 + +PRJ_OBJS = \ + $(TMP_DIR)\tiff.obj \ + $(TMP_DIR)\tiffJpeg.obj \ + $(TMP_DIR)\tiffZip.obj \ + $(TMP_DIR)\tiffPixar.obj + +!include "..\..\win\rules-img.vc" + +$(PRJ_OBJS): $(TMP_DIR)\tiffconf.h $(TMP_DIR)\tif_config.h $(TMP_DIR)\jconfig.h +$(TMP_DIR)\tiffconf.h: ..\..\compat\libtiff\libtiff\tiffconf.vc.h + $(COPY) $** "$@" +$(TMP_DIR)\tif_config.h: ..\..\compat\libtiff\libtiff\tif_config.vc.h + $(COPY) $** "$@" +$(TMP_DIR)\jconfig.h: ..\..\compat\libjpeg\jconfig.vc + $(COPY) $** "$@" |