summaryrefslogtreecommitdiffstats
path: root/tkimg/zlib/win
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2019-03-20 17:30:33 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2019-03-20 17:30:33 (GMT)
commit54d971086f3a99dd7c9552fbe07f589f43bf439c (patch)
tree53969f74e5aef27e572e5db2af98a54b15e0a6a4 /tkimg/zlib/win
parentcfef685ad45bc8f98a2d59fba75ba9bc6e06496d (diff)
downloadblt-54d971086f3a99dd7c9552fbe07f589f43bf439c.zip
blt-54d971086f3a99dd7c9552fbe07f589f43bf439c.tar.gz
blt-54d971086f3a99dd7c9552fbe07f589f43bf439c.tar.bz2
upgrade tkimg 1.4.9
Diffstat (limited to 'tkimg/zlib/win')
-rwxr-xr-xtkimg/zlib/win/makefile.vc52
1 files changed, 52 insertions, 0 deletions
diff --git a/tkimg/zlib/win/makefile.vc b/tkimg/zlib/win/makefile.vc
new file mode 100755
index 0000000..5ab2503
--- /dev/null
+++ b/tkimg/zlib/win/makefile.vc
@@ -0,0 +1,52 @@
+#------------------------------------------------------------- -*- 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.
+#
+#------------------------------------------------------------------------------
+
+
+PROJECT = zlibtcl
+
+NEED_TCL_SOURCE = 1
+COMPATDIR = ..\..\compat\zlib
+!include "..\..\win\rules-ext.vc"
+
+PRJ_OBJS = \
+ $(TMP_DIR)\zlibtcl.obj \
+ $(TMP_DIR)\zlibtclStubInit.obj \
+ $(TMP_DIR)\adler32.obj \
+ $(TMP_DIR)\compress.obj \
+ $(TMP_DIR)\crc32.obj \
+ $(TMP_DIR)\deflate.obj \
+ $(TMP_DIR)\gzclose.obj \
+ $(TMP_DIR)\gzlib.obj \
+ $(TMP_DIR)\gzread.obj \
+ $(TMP_DIR)\gzwrite.obj \
+ $(TMP_DIR)\infback.obj \
+ $(TMP_DIR)\inffast.obj \
+ $(TMP_DIR)\inflate.obj \
+ $(TMP_DIR)\inftrees.obj \
+ $(TMP_DIR)\trees.obj \
+ $(TMP_DIR)\uncompr.obj \
+ $(TMP_DIR)\zutil.obj \
+ $(TMP_DIR)\zlibtclStubLib.obj
+
+PRJ_STUBOBJS = $(TMP_DIR)\zlibtclStubLib.obj
+PRJ_INCLUDES = -I"$(TMP_DIR)"
+PRJ_DEFINES = -DZEXTERN=MODULE_SCOPE -D_CRT_SECURE_NO_WARNINGS
+
+!include "..\..\win\install-lib.vc"
+
+$(PRJ_OBJS): $(TMP_DIR)\jconfig.h
+$(TMP_DIR)\jconfig.h: ..\..\compat\libjpeg\jconfig.vc
+ $(COPY) $** "$@"