mirror of https://github.com/lukechilds/node.git
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.
26 lines
457 B
26 lines
457 B
13 years ago
|
CC=cc
|
||
|
CFLAGS=-O -I../..
|
||
|
|
||
|
UNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a
|
||
|
ZIP_OBJS = minizip.o zip.o ioapi.o ../../libz.a
|
||
|
|
||
|
.c.o:
|
||
|
$(CC) -c $(CFLAGS) $*.c
|
||
|
|
||
|
all: miniunz minizip
|
||
|
|
||
|
miniunz: $(UNZ_OBJS)
|
||
|
$(CC) $(CFLAGS) -o $@ $(UNZ_OBJS)
|
||
|
|
||
|
minizip: $(ZIP_OBJS)
|
||
|
$(CC) $(CFLAGS) -o $@ $(ZIP_OBJS)
|
||
|
|
||
|
test: miniunz minizip
|
||
|
./minizip test readme.txt
|
||
|
./miniunz -l test.zip
|
||
|
mv readme.txt readme.old
|
||
|
./miniunz test.zip
|
||
|
|
||
|
clean:
|
||
|
/bin/rm -f *.o *~ minizip miniunz
|