forked from cory/tildefriends
Cory McWilliams
50e48af7c4
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4205 ed5197a5-7fde-0310-b194-c3ffbd925b24
18 lines
281 B
Makefile
18 lines
281 B
Makefile
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
|