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=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 ../..; ./configure; make
|
|
|
|
clean:
|
|
rm -f untgz untgz.o *~
|
|
|