From 7850e4e406dce1f7a819297eeb151d1ca18e7cd9 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:17:33 -0700 Subject: zlib 1.0.7 --- contrib/untgz/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 contrib/untgz/Makefile (limited to 'contrib/untgz/Makefile') diff --git a/contrib/untgz/Makefile b/contrib/untgz/Makefile new file mode 100644 index 0000000..409b4bd --- /dev/null +++ b/contrib/untgz/Makefile @@ -0,0 +1,14 @@ +CC=cc +CFLAGS=-g + +untgz: untgz.o ../../libz.a + $(CC) $(CFLAGS) -o untgz untgz.o -L../.. -lz + +untgz.o: untgz.c ../../zlib.h + $(CC) $(CFLAGS) -c -I../.. untgz.c + +../../libz.a: + cd ../..; make + +clean: + rm -f untgz untgz.o *~ -- cgit v1.2.3-55-g6feb