You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
281 B
18 lines
281 B
14 years ago
|
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
|