]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | # makefile for libpng |
2 | # Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc. | |
3 | # For conditions of distribution and use, see copyright notice in png.h | |
4 | ||
5 | # Where the zlib library and include files are located | |
6 | #ZLIBLIB=/usr/local/lib | |
7 | #ZLIBINC=/usr/local/include | |
8 | ZLIBLIB=../zlib | |
9 | ZLIBINC=../zlib | |
10 | ||
11 | ||
12 | WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow -Wconversion \ | |
13 | -Wmissing-declarations -Wtraditional -Wcast-align \ | |
14 | -Wstrict-prototypes -Wmissing-prototypes | |
15 | CC=gcc | |
16 | CFLAGS=-I$(ZLIBINC) -O $(WARNMORE) -DPNG_DEBUG=4 | |
17 | LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm | |
18 | ||
19 | RANLIB=ranlib | |
20 | #RANLIB=echo | |
21 | ||
22 | # where make install puts libpng.a and png.h | |
23 | prefix=/usr/local | |
24 | ||
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 | |
28 | ||
29 | all: libpng.a pngtest | |
30 | ||
31 | libpng.a: $(OBJS) | |
32 | ar rc $@ $(OBJS) | |
33 | $(RANLIB) $@ | |
34 | ||
35 | pngtest: pngtest.o libpng.a | |
36 | $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS) | |
37 | ||
38 | test: pngtest | |
39 | ./pngtest | |
40 | ||
41 | install: libpng.a | |
42 | -@mkdir $(prefix)/include | |
43 | -@mkdir $(prefix)/lib | |
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 | |
50 | ||
51 | clean: | |
52 | rm -f *.o libpng.a pngtest pngout.png | |
53 | ||
54 | # DO NOT DELETE THIS LINE -- make depend depends on it. | |
55 | ||
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 | |
72 |