Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
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.
|
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
|
|
|