9 # Makefile for PNG library, Unix
 
  13 TARGETLIB=../../lib/libzlib.a
 
  15 LIB_C_SRC = adler32.c compress.c crc32.c gzio.c uncompr.c deflate.c \
 
  16   trees.c zutil.c inflate.c infblock.c inftrees.c infcodes.c \
 
  21 # Define library objects
 
  25 $(TARGETLIB) : $(OBJECTS)
 
  26         ar $(AROPTIONS) $@ $(OBJECTS)
 
  30         rm -f $(OBJECTS) $(TARGETLIB)