Edit

kc3-lang/zlib/contrib/minizip/Makefile

Branch :

  • Show log

    Commit

  • Author : Mark Adler
    Date : 2024-01-21 09:24:10
    Hash : c06dfecb
    Message : Use Makefile compiler for minizip-test target.

  • contrib/minizip/Makefile
  • CC?=cc
    CFLAGS := $(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
    	@rm -f test.*
    	@echo hello hello hello > test.txt
    	./minizip test test.txt
    	./miniunz -l test.zip
    	@mv test.txt test.old
    	./miniunz test.zip
    	@cmp test.txt test.old
    	@rm -f test.*
    
    clean:
    	/bin/rm -f *.o *~ minizip miniunz test.*