1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-12-03 12:48:21 +00:00
simplesshd/zlib/contrib/untgz/Makefile

15 lines
234 B
Makefile
Raw Normal View History

2014-12-21 20:03:20 +00:00
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 *~