Mercurial > hg > sv-dependency-builds
annotate src/zlib-1.2.8/contrib/untgz/Makefile.msc @ 83:ae30d91d2ffe
Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author | Chris Cannam |
---|---|
date | Fri, 07 Feb 2020 11:51:13 +0000 |
parents | 5ea0608b923f |
children |
rev | line source |
---|---|
Chris@43 | 1 CC=cl |
Chris@43 | 2 CFLAGS=-MD |
Chris@43 | 3 |
Chris@43 | 4 untgz.exe: untgz.obj ..\..\zlib.lib |
Chris@43 | 5 $(CC) $(CFLAGS) untgz.obj ..\..\zlib.lib |
Chris@43 | 6 |
Chris@43 | 7 untgz.obj: untgz.c ..\..\zlib.h |
Chris@43 | 8 $(CC) $(CFLAGS) -c -I..\.. untgz.c |
Chris@43 | 9 |
Chris@43 | 10 ..\..\zlib.lib: |
Chris@43 | 11 cd ..\.. |
Chris@43 | 12 $(MAKE) -f win32\makefile.msc |
Chris@43 | 13 cd contrib\untgz |
Chris@43 | 14 |
Chris@43 | 15 clean: |
Chris@43 | 16 -del untgz.obj |
Chris@43 | 17 -del untgz.exe |