Counter Strike : Global Offensive Source Code
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.

17 lines
281 B

  1. CC=cl
  2. CFLAGS=-MD
  3. untgz.exe: untgz.obj ..\..\zlib.lib
  4. $(CC) $(CFLAGS) untgz.obj ..\..\zlib.lib
  5. untgz.obj: untgz.c ..\..\zlib.h
  6. $(CC) $(CFLAGS) -c -I..\.. untgz.c
  7. ..\..\zlib.lib:
  8. cd ..\..
  9. $(MAKE) -f win32\makefile.msc
  10. cd contrib\untgz
  11. clean:
  12. -del untgz.obj
  13. -del untgz.exe