2 # Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
3 # For conditions of distribution and use, see copyright notice in png.h
5 # Where the zlib library and include files are located
6 #ZLIBLIB=/usr/local/lib
7 #ZLIBINC=/usr/local/include
12 WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow -Wconversion \
13 -Wmissing-declarations -Wtraditional -Wcast-align \
14 -Wstrict-prototypes -Wmissing-prototypes
16 CFLAGS=-I$(ZLIBINC) -O $(WARNMORE) -DPNG_DEBUG=4
17 LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm
22 # where make install puts libpng.a and png.h
25 OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
26 pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
27 pngwtran.o pngmem.o pngerror.o pngpread.o
35 pngtest: pngtest.o libpng.a
36 $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
42 -@mkdir $(prefix)/include
44 cp png.h $(prefix)/include
45 cp pngconf.h $(prefix)/include
46 chmod 644 $(prefix)/include/png.h
47 chmod 644 $(prefix)/include/pngconf.h
48 cp libpng.a $(prefix)/lib
49 chmod 644 $(prefix)/lib/libpng.a
52 rm -f *.o libpng.a pngtest pngout.png
54 # DO NOT DELETE THIS LINE -- make depend depends on it.
56 png.o: png.h pngconf.h
57 pngerror.o: png.h pngconf.h
58 pngrio.o: png.h pngconf.h
59 pngwio.o: png.h pngconf.h
60 pngmem.o: png.h pngconf.h
61 pngset.o: png.h pngconf.h
62 pngget.o: png.h pngconf.h
63 pngread.o: png.h pngconf.h
64 pngrtran.o: png.h pngconf.h
65 pngrutil.o: png.h pngconf.h
66 pngtest.o: png.h pngconf.h
67 pngtrans.o: png.h pngconf.h
68 pngwrite.o: png.h pngconf.h
69 pngwtran.o: png.h pngconf.h
70 pngwutil.o: png.h pngconf.h
71 pngpread.o: png.h pngconf.h