diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-01-03 06:44:59 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-01-03 06:44:59 (GMT) |
commit | d372aa8e3708f5d8af24cf993b18134544908d95 (patch) | |
tree | 01a29ed92382039f9c361934d97ff9b30a31972a /Modules/zlib/contrib/untgz/Makefile.msc | |
parent | 9ca9f5676cdc8925373f25f4d252670697294465 (diff) | |
download | cpython-d372aa8e3708f5d8af24cf993b18134544908d95.zip cpython-d372aa8e3708f5d8af24cf993b18134544908d95.tar.gz cpython-d372aa8e3708f5d8af24cf993b18134544908d95.tar.bz2 |
Import zlib into Python tree.
Diffstat (limited to 'Modules/zlib/contrib/untgz/Makefile.msc')
-rw-r--r-- | Modules/zlib/contrib/untgz/Makefile.msc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Modules/zlib/contrib/untgz/Makefile.msc b/Modules/zlib/contrib/untgz/Makefile.msc new file mode 100644 index 0000000..77b8602 --- /dev/null +++ b/Modules/zlib/contrib/untgz/Makefile.msc @@ -0,0 +1,17 @@ +CC=cl +CFLAGS=-MD + +untgz.exe: untgz.obj ..\..\zlib.lib + $(CC) $(CFLAGS) untgz.obj ..\..\zlib.lib + +untgz.obj: untgz.c ..\..\zlib.h + $(CC) $(CFLAGS) -c -I..\.. untgz.c + +..\..\zlib.lib: + cd ..\.. + $(MAKE) -f win32\makefile.msc + cd contrib\untgz + +clean: + -del untgz.obj + -del untgz.exe |