Mercurial > fife-parpg
comparison ext/libpng-1.2.29/scripts/makefile.mips @ 0:4a0efb7baf70
* Datasets becomes the new trunk and retires after that :-)
author | mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Sun, 29 Jun 2008 18:44:17 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4a0efb7baf70 |
---|---|
1 # makefile for libpng | |
2 # Copyright (C) Glenn Randers-Pehrson | |
3 # Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc. | |
4 # For conditions of distribution and use, see copyright notice in png.h | |
5 | |
6 # where make install puts libpng.a and png.h | |
7 prefix=/usr/local | |
8 INCPATH=$(prefix)/include | |
9 LIBPATH=$(prefix)/lib | |
10 | |
11 # override DESTDIR= on the make install command line to easily support | |
12 # installing into a temporary location. Example: | |
13 # | |
14 # make install DESTDIR=/tmp/build/libpng | |
15 # | |
16 # If you're going to install into a temporary location | |
17 # via DESTDIR, $(DESTDIR)$(prefix) must already exist before | |
18 # you execute make install. | |
19 DESTDIR= | |
20 | |
21 CC=cc | |
22 CFLAGS=-I../zlib -O -systype sysv -DSYSV -w -Dmips | |
23 #CFLAGS=-O | |
24 LDFLAGS=-L. -L../zlib/ -lpng -lz -lm | |
25 | |
26 #RANLIB=ranlib | |
27 RANLIB=echo | |
28 | |
29 OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \ | |
30 pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \ | |
31 pngwtran.o pngmem.o pngerror.o pngpread.o | |
32 | |
33 all: libpng.a pngtest | |
34 | |
35 libpng.a: $(OBJS) | |
36 ar rc $@ $(OBJS) | |
37 $(RANLIB) $@ | |
38 | |
39 pngtest: pngtest.o libpng.a | |
40 $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS) | |
41 | |
42 test: pngtest | |
43 ./pngtest | |
44 | |
45 install: libpng.a | |
46 -@mkdir $(DESTDIR)$(INCPATH) | |
47 -@mkdir $(DESTDIR)$(INCPATH)/libpng | |
48 -@mkdir $(DESTDIR)$(LIBPATH) | |
49 -@rm -f $(DESTDIR)$(INCPATH)/png.h | |
50 -@rm -f $(DESTDIR)$(INCPATH)/pngconf.h | |
51 cp png.h $(DESTDIR)$(INCPATH)/libpng | |
52 cp pngconf.h $(DESTDIR)$(INCPATH)/libpng | |
53 chmod 644 $(DESTDIR)$(INCPATH)/libpng/png.h | |
54 chmod 644 $(DESTDIR)$(INCPATH)/libpng/pngconf.h | |
55 (cd $(DESTDIR)$(INCPATH); ln -f -s libpng/* .) | |
56 cp libpng.a $(DESTDIR)$(LIBPATH) | |
57 chmod 644 $(DESTDIR)$(LIBPATH)/libpng.a | |
58 | |
59 clean: | |
60 rm -f *.o libpng.a pngtest pngout.png | |
61 | |
62 DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO | |
63 writelock: | |
64 chmod a-w *.[ch35] $(DOCS) scripts/* | |
65 | |
66 # DO NOT DELETE THIS LINE -- make depend depends on it. | |
67 | |
68 png.o: png.h pngconf.h | |
69 pngerror.o: png.h pngconf.h | |
70 pngrio.o: png.h pngconf.h | |
71 pngwio.o: png.h pngconf.h | |
72 pngmem.o: png.h pngconf.h | |
73 pngset.o: png.h pngconf.h | |
74 pngget.o: png.h pngconf.h | |
75 pngread.o: png.h pngconf.h | |
76 pngpread.o: png.h pngconf.h | |
77 pngrtran.o: png.h pngconf.h | |
78 pngrutil.o: png.h pngconf.h | |
79 pngtest.o: png.h pngconf.h | |
80 pngtrans.o: png.h pngconf.h | |
81 pngwrite.o: png.h pngconf.h | |
82 pngwtran.o: png.h pngconf.h | |
83 pngwutil.o: png.h pngconf.h |