New comit of SDL2
[supertux.git] / src / SDL2 / external / libpng-1.6.2 / contrib / pngminim / preader / makefile
1 # Makefile for PngMinus (rpng2)
2 # Linux / Unix
3
4 #CC=cc
5 CC=gcc
6 LD=$(CC)
7
8 # If awk fails try
9 # make AWK=nawk
10
11 # If cpp fails try
12 # make CPP=/lib/cpp
13
14 RM=rm -f
15 COPY=cp
16
17 #XINC = -I/usr/include                  # old-style, stock X distributions
18 #XLIB = -L/usr/lib/X11 -lX11            #  (including SGI IRIX)
19
20 #XINC = -I/usr/openwin/include          # Sun workstations (OpenWindows)
21 #XLIB = -L/usr/openwin/lib -lX11
22
23 XINC = -I/usr/X11R6/include             # new X distributions (X.org, etc.)
24 XLIB = -L/usr/X11R6/lib -lX11
25 #XLIB = -L/usr/X11R6/lib64 -lX11        # e.g., Red Hat on AMD64
26
27 #XINC = -I/usr/local/include            # FreeBSD
28 #XLIB = -L/usr/local/lib -lX11
29
30 #LIBS = $(XLIB)
31 LIBS = $(XLIB) -lm                      #platforms that need libm
32
33 CFLAGS=-DPNG_USER_CONFIG -DNO_GZCOMPRESS -DZ_SOLO -DNO_GZIP -I. $(XINC) -O1
34
35 C=.c
36 O=.o
37 L=.a
38 E=
39
40 # Where to find the source code:
41 PNGSRC =../../..
42 ZLIBSRC=$(PNGSRC)/../zlib
43 PROGSRC=$(PNGSRC)/contrib/gregbook
44
45 # Zlib (minimal inflate requirements - crc32 is used by libpng)
46 # zutil can be eliminated if you provide your own zcalloc and zcfree
47 ZSRCS  = adler32$(C) crc32$(C) \
48          inffast$(C) inflate$(C) inftrees$(C) \
49          zutil$(C)
50
51 # Standard headers
52 ZH     = zlib.h crc32.h inffast.h inffixed.h \
53          inflate.h inftrees.h zutil.h
54
55 # Machine generated headers
56 ZCONF  = zconf.h
57
58 # Headers callers use
59 ZINC   = zlib.h $(ZCONF)
60
61 # Headers the Zlib source uses
62 ZHDRS  = $(ZH) $(ZCONF)
63
64 ZOBJS  = adler32$(O) crc32$(O) \
65          inffast$(O) inflate$(O) inftrees$(O) \
66          zutil$(O)
67
68 # libpng
69 PNGSRCS=png$(C) pngerror$(C) pngget$(C) pngmem$(C) \
70         pngpread$(C) pngread$(C) pngrio$(C) pngrtran$(C) pngrutil$(C) \
71         pngset$(C) pngtrans$(C)
72
73 # Standard headers
74 PNGH   =png.h pngconf.h pngdebug.h pnginfo.h pngpriv.h pngstruct.h
75
76 # Machine generated headers
77 PNGCONF=pnglibconf.h
78
79 # Headers callers use
80 PNGINC= png.h pngconf.h pngusr.h $(PNGCONF)
81
82 # Headers the PNG library uses
83 PNGHDRS=$(PNGH) $(PNGCONF) pngusr.h
84
85 PNGOBJS=png$(O) pngerror$(O) pngget$(O) pngmem$(O) \
86         pngpread$(O) pngread$(O) pngrio$(O) pngrtran$(O) pngrutil$(O) \
87         pngset$(O) pngtrans$(O)
88
89 PROGSRCS= rpng2-x$(C) readpng2$(C)
90 PROGHDRS= readpng2.h
91 PROGDOCS= COPYING LICENSE
92 PROGOBJS= rpng2-x$(O) readpng2$(O)
93
94 OBJS    = $(PROGOBJS) $(PNGOBJS) $(ZOBJS)
95
96 # implicit make rules -------------------------------------------------------
97
98 .c$(O):
99         $(CC) -c $(CFLAGS) $<
100
101 # dependencies
102
103 all: $(PROGDOCS) rpng2-x$(E)
104
105 rpng2-x$(E): $(OBJS)
106         $(LD) -o rpng2-x$(E) $(OBJS) $(LIBS)
107
108 # The DFA_XTRA setting turns all libpng options off then
109 # turns on those required for this minimal build.
110 # The CPP_FLAGS setting causes pngusr.h to be included in
111 # both the build of pnglibconf.h and, subsequently, when
112 # building libpng itself.
113 $(PNGCONF): $(PNGSRC)/scripts/pnglibconf.mak\
114         $(PNGSRC)/scripts/pnglibconf.dfa \
115         $(PNGSRC)/scripts/options.awk pngusr.h pngusr.dfa
116         $(RM) pnglibconf.h pnglibconf.dfn
117         $(MAKE) $(MAKEFLAGS) -f $(PNGSRC)/scripts/pnglibconf.mak\
118             srcdir=$(PNGSRC) CPPFLAGS="-DPNG_USER_CONFIG"\
119             DFA_XTRA="pngusr.dfa" $@
120
121 clean:
122         $(MAKE) $(MAKEFLAGS) -f $(PNGSRC)/scripts/pnglibconf.mak\
123             srcdir=$(PNGSRC) clean
124         $(RM) rpng2-x$(O)
125         $(RM) rpng2-x$(E)
126         $(RM) $(OBJS)
127
128 # distclean also removes the copied source and headers
129 distclean: clean
130         $(RM) -r scripts # historical reasons
131         $(RM) $(PNGSRCS) $(PNGH)
132         $(RM) $(ZSRCS) $(ZH) $(ZCONF)
133         $(RM) $(PROGSRCS) $(PROGHDRS) $(PROGDOCS)
134
135 # Header file dependencies:
136 $(PROGOBJS): $(PROGHDRS) $(PNGINC) $(ZINC)
137 $(PNGOBJS): $(PNGHDRS) $(ZINC)
138 $(ZOBJS): $(ZHDRS)
139
140 # Gather the source code from the respective directories
141 $(PNGSRCS) $(PNGH): $(PNGSRC)/$@
142         $(RM) $@
143         $(COPY) $(PNGSRC)/$@ $@
144
145 # No dependency on the ZLIBSRC target so that it only needs
146 # to be specified once.
147 $(ZSRCS) $(ZH):
148         $(RM) $@
149         $(COPY) $(ZLIBSRC)/$@ $@
150
151 # The unconfigured zconf.h varies in name according to the
152 # zlib release
153 $(ZCONF):
154         $(RM) $@
155         @for f in zconf.h.in zconf.in.h zconf.h; do\
156             test -r $(ZLIBSRC)/$$f &&\
157             echo $(COPY) $(ZLIBSRC)/$$f $@ &&\
158             $(COPY) $(ZLIBSRC)/$$f $@ && exit 0;\
159         done; echo copy: $(ZLIBSRC)/zconf.h not found; exit 1
160
161 $(PROGSRCS) $(PROGHDRS) $(PROGDOCS): $(PROGSRC)/$@
162         $(RM) $@
163         $(COPY) $(PROGSRC)/$@ $@
164
165 # End of makefile for rpng2-x