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.
15 lines
234 B
15 lines
234 B
14 years ago
|
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 *~
|