zlib/contrib/minizip/Makefile

30 lines
562 B
Makefile
Raw Permalink Normal View History

2011-09-10 02:27:17 -04:00
CC=cc
CFLAGS := $(CFLAGS) -O -I../..
2011-09-10 02:27:17 -04:00
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
@rm -f test.*
@echo hello hello hello > test.txt
./minizip test test.txt
2011-09-10 02:27:17 -04:00
./miniunz -l test.zip
@mv test.txt test.old
2011-09-10 02:27:17 -04:00
./miniunz test.zip
@cmp test.txt test.old
@rm -f test.*
2011-09-10 02:27:17 -04:00
clean:
/bin/rm -f *.o *~ minizip miniunz test.*