source: rtems-graphics-toolkit/libpng-1.5.11/scripts/makefile.std @ 248419a

Last change on this file since 248419a was 248419a, checked in by Sebastian Huber <sebastian.huber@…>, on 07/12/12 at 07:28:02

Update libpng from 1.2.41 to 1.5.11

  • Property mode set to 100644
File size: 4.3 KB
Line 
1# makefile for libpng
2# Copyright (C) 2002, 2006 Glenn Randers-Pehrson
3# Copyright (C) 1995 Guy Eric Schalnat, Group 42, Inc.
4#
5# This code is released under the libpng license.
6# For conditions of distribution and use, see the disclaimer
7# and license in png.h
8
9# where make install puts libpng.a and png.h
10prefix=/usr/local
11INCPATH=$(prefix)/include
12LIBPATH=$(prefix)/lib
13
14# override DESTDIR= on the make install command line to easily support
15# installing into a temporary location.  Example:
16#
17#    make install DESTDIR=/tmp/build/libpng
18#
19# If you're going to install into a temporary location
20# via DESTDIR, $(DESTDIR)$(prefix) must already exist before
21# you execute make install.
22DESTDIR=
23
24# Where the zlib library and include files are located
25#ZLIBLIB=/usr/local/lib
26#ZLIBINC=/usr/local/include
27ZLIBLIB=../zlib
28ZLIBINC=../zlib
29
30CC=cc
31AR_RC=ar rc
32MKDIR_P=mkdir
33LN_SF=ln -sf
34RANLIB=ranlib
35RM_F=rm -f
36AWK = awk
37SED = sed
38CPP = $(CC) -E
39ECHO = echo
40
41DFNFLAGS = # DFNFLAGS contains -D options to use in the libpng build
42CFLAGS=-I$(ZLIBINC) -O # -g -DPNG_DEBUG=5
43LDFLAGS=-L. -L$(ZLIBLIB) -lpng -lz -lm
44
45OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
46        pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
47        pngwtran.o pngmem.o pngerror.o pngpread.o
48
49all: libpng.a pngtest
50
51# The standard pnglibconf.h exists as scripts/pnglibconf.h.prebuilt,
52# copy this if the following doesn't work.
53pnglibconf.dfn: scripts/pnglibconf.dfa scripts/options.awk pngconf.h
54        $(RM_F) $@ dfn?.out
55        $(AWK) -f scripts/options.awk out=dfn1.out version=search pngconf.h\
56            scripts/pnglibconf.dfa $(DFA_XTRA) 1>&2
57        $(AWK) -f scripts/options.awk out=dfn2.out dfn1.out 1>&2
58        cp dfn2.out $@
59        $(RM_F) dfn?.out
60
61pnglibconf.h: pnglibconf.dfn
62        $(RM_F) $@ dfn.c dfn?.out
63        $(ECHO) '#include "pnglibconf.dfn"' >dfn.c
64        $(CPP) $(DFNFLAGS) dfn.c >dfn1.out
65        $(SED) -n -e 's|^.*PNG_DEFN_MAGIC *-\(.*\)- *PNG_DEFN_END.*$$|\1|p'\
66            dfn1.out >dfn2.out
67        $(SED) -e 's| *PNG_JOIN *||g' -e 's| *$$||' dfn2.out >dfn3.out
68        cp dfn3.out $@
69        $(RM_F) dfn.c dfn?.out
70
71libpng.a: $(OBJS)
72        $(AR_RC) $@  $(OBJS)
73        $(RANLIB) $@
74
75pngtest: pngtest.o libpng.a
76        $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
77
78test: pngtest
79        ./pngtest
80
81install: libpng.a pnglibconf.h
82        -@$(MKDIR_P) $(DESTDIR)$(INCPATH)
83        -@$(MKDIR_P) $(DESTDIR)$(INCPATH)/libpng
84        -@$(MKDIR_P) $(DESTDIR)$(LIBPATH)
85        -@$(RM_F) $(DESTDIR)$(INCPATH)/png.h
86        -@$(RM_F) $(DESTDIR)$(INCPATH)/pngconf.h
87        -@$(RM_F) $(DESTDIR)$(INCPATH)/pnglibconf.h
88        cp png.h $(DESTDIR)$(INCPATH)/libpng
89        cp pngconf.h $(DESTDIR)$(INCPATH)/libpng
90        cp pnglibconf.h $(DESTDIR)$(INCPATH)/libpng
91        chmod 644 $(DESTDIR)$(INCPATH)/libpng/png.h
92        chmod 644 $(DESTDIR)$(INCPATH)/libpng/pngconf.h
93        chmod 644 $(DESTDIR)$(INCPATH)/libpng/pnglibconf.h
94        (cd $(DESTDIR)$(INCPATH); ln -f -s libpng/* .)
95        cp libpng.a $(DESTDIR)$(LIBPATH)
96        chmod 644 $(DESTDIR)$(LIBPATH)/libpng.a
97
98clean:
99        $(RM_F) *.o libpng.a pngtest pngout.png pnglibconf.* dfn.c dfn?.out
100
101DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
102writelock:
103        chmod a-w *.[ch35] $(DOCS) scripts/*
104
105# DO NOT DELETE THIS LINE -- make depend depends on it.
106
107png.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
108pngerror.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
109pngrio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
110pngwio.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
111pngmem.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
112pngset.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
113pngget.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
114pngread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
115pngrtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
116pngrutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
117pngtrans.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
118pngwrite.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
119pngwtran.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
120pngwutil.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
121pngpread.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
122
123pngtest.o: png.h pngconf.h pnglibconf.h
Note: See TracBrowser for help on using the repository browser.