forked from cory/tildefriends
Cory McWilliams
50e48af7c4
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4205 ed5197a5-7fde-0310-b194-c3ffbd925b24
15 lines
234 B
Makefile
15 lines
234 B
Makefile
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 *~
|