]> git.saurik.com Git - wxWidgets.git/blame - src/png/scripts/makefile.mip
Code for single instance and bring-to-top under CE.
[wxWidgets.git] / src / png / scripts / makefile.mip
CommitLineData
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
5CC=cc
6CFLAGS=-I../zlib -O -systype sysv -DSYSV -w -Dmips
7#CFLAGS=-O
8LDFLAGS=-L. -L../zlib/ -lpng -lz -lm
9
10#RANLIB=ranlib
11RANLIB=echo
12
13# where make install puts libpng.a and png.h
14prefix=/usr/local
15
16OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
17 pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
18 pngwtran.o pngmem.o pngerror.o pngpread.o
19
20all: libpng.a pngtest
21
22libpng.a: $(OBJS)
23 ar rc $@ $(OBJS)
24 $(RANLIB) $@
25
26pngtest: pngtest.o libpng.a
27 $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
28
29test: pngtest
30 ./pngtest
31
32install: libpng.a
33 -@mkdir $(prefix)/include
34 -@mkdir $(prefix)/lib
35 cp png.h $(prefix)/include
36 cp pngconf.h $(prefix)/include
37 chmod 644 $(prefix)/include/png.h
38 chmod 644 $(prefix)/include/pngconf.h
39 cp libpng.a $(prefix)/lib
40 chmod 644 $(prefix)/lib/libpng.a
41
42clean:
43 rm -f *.o libpng.a pngtest pngout.png
44
45# DO NOT DELETE THIS LINE -- make depend depends on it.
46
47png.o: png.h pngconf.h
48pngerror.o: png.h pngconf.h
49pngrio.o: png.h pngconf.h
50pngwio.o: png.h pngconf.h
51pngmem.o: png.h pngconf.h
52pngset.o: png.h pngconf.h
53pngget.o: png.h pngconf.h
54pngread.o: png.h pngconf.h
55pngpread.o: png.h pngconf.h
56pngrtran.o: png.h pngconf.h
57pngrutil.o: png.h pngconf.h
58pngtest.o: png.h pngconf.h
59pngtrans.o: png.h pngconf.h
60pngwrite.o: png.h pngconf.h
61pngwtran.o: png.h pngconf.h
62pngwutil.o: png.h pngconf.h