1275793eaSopenharmony_ciCC?=cc 2275793eaSopenharmony_ciCFLAGS := $(CFLAGS) -O -I../.. 3275793eaSopenharmony_ci 4275793eaSopenharmony_ciUNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a 5275793eaSopenharmony_ciZIP_OBJS = minizip.o zip.o ioapi.o ../../libz.a 6275793eaSopenharmony_ci 7275793eaSopenharmony_ci.c.o: 8275793eaSopenharmony_ci $(CC) -c $(CFLAGS) $*.c 9275793eaSopenharmony_ci 10275793eaSopenharmony_ciall: miniunz minizip 11275793eaSopenharmony_ci 12275793eaSopenharmony_ciminiunz: $(UNZ_OBJS) 13275793eaSopenharmony_ci $(CC) $(CFLAGS) -o $@ $(UNZ_OBJS) 14275793eaSopenharmony_ci 15275793eaSopenharmony_ciminizip: $(ZIP_OBJS) 16275793eaSopenharmony_ci $(CC) $(CFLAGS) -o $@ $(ZIP_OBJS) 17275793eaSopenharmony_ci 18275793eaSopenharmony_citest: miniunz minizip 19275793eaSopenharmony_ci @rm -f test.* 20275793eaSopenharmony_ci @echo hello hello hello > test.txt 21275793eaSopenharmony_ci ./minizip test test.txt 22275793eaSopenharmony_ci ./miniunz -l test.zip 23275793eaSopenharmony_ci @mv test.txt test.old 24275793eaSopenharmony_ci ./miniunz test.zip 25275793eaSopenharmony_ci @cmp test.txt test.old 26275793eaSopenharmony_ci @rm -f test.* 27275793eaSopenharmony_ci 28275793eaSopenharmony_ciclean: 29275793eaSopenharmony_ci /bin/rm -f *.o *~ minizip miniunz test.* 30