|
1 # makefile for libpng on Solaris 9 (beta) with Forte cc |
|
2 # Updated by Chad Schrock for Solaris 9 |
|
3 # Contributed by William L. Sebok, based on makefile.linux |
|
4 # Copyright (C) 2002, 2006, 2008 Glenn Randers-Pehrson |
|
5 # Copyright (C) 1998-2001 Greg Roelofs |
|
6 # Copyright (C) 1996-1997 Andreas Dilger |
|
7 |
|
8 # This code is released under the libpng license. |
|
9 # For conditions of distribution and use, see the disclaimer |
|
10 # and license in png.h |
|
11 |
|
12 # Library name: |
|
13 PNGMAJ = 0 |
|
14 PNGMIN = 1.2.40 |
|
15 PNGVER = $(PNGMAJ).$(PNGMIN) |
|
16 LIBNAME = libpng12 |
|
17 |
|
18 # Shared library names: |
|
19 LIBSO=$(LIBNAME).so |
|
20 LIBSOMAJ=$(LIBNAME).so.$(PNGMAJ) |
|
21 LIBSOVER=$(LIBNAME).so.$(PNGVER) |
|
22 OLDSO=libpng.so |
|
23 OLDSOMAJ=libpng.so.3 |
|
24 OLDSOVER=libpng.so.3.$(PNGMIN) |
|
25 |
|
26 # Utilities: |
|
27 # gcc 2.95 doesn't work. |
|
28 CC=cc |
|
29 AR_RC=ar rc |
|
30 MKDIR_P=mkdir -p |
|
31 LN_SF=ln -f -s |
|
32 RANLIB=echo |
|
33 RM_F=/bin/rm -f |
|
34 |
|
35 # Where make install puts libpng.a, $(OLDSO)*, and png.h |
|
36 prefix=/usr/local |
|
37 exec_prefix=$(prefix) |
|
38 |
|
39 # Where the zlib library and include files are located |
|
40 # Changing these to ../zlib poses a security risk. If you want |
|
41 # to have zlib in an adjacent directory, specify the full path instead of "..". |
|
42 #ZLIBLIB=../zlib |
|
43 #ZLIBINC=../zlib |
|
44 #ZLIBLIB=/usr/local/lib |
|
45 #ZLIBINC=/usr/local/include |
|
46 #Use the preinstalled zlib that comes with Solaris 9: |
|
47 ZLIBLIB=/usr/lib |
|
48 ZLIBINC=/usr/include |
|
49 |
|
50 #WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow \ |
|
51 -Wmissing-declarations -Wtraditional -Wcast-align \ |
|
52 -Wstrict-prototypes -Wmissing-prototypes #-Wconversion |
|
53 #CFLAGS=-I$(ZLIBINC) -W -Wall -O3 $(WARNMORE) -g -DPNG_DEBUG=5 -DPNG_NO_MMX_CODE |
|
54 CFLAGS=-I$(ZLIBINC) -O3 -DPNG_NO_MMX_CODE |
|
55 LDFLAGS=-L. -R. -L$(ZLIBLIB) -R$(ZLIBLIB) -lpng12 -lz -lm |
|
56 |
|
57 INCPATH=$(prefix)/include |
|
58 LIBPATH=$(exec_prefix)/lib |
|
59 MANPATH=$(prefix)/man |
|
60 BINPATH=$(exec_prefix)/bin |
|
61 |
|
62 # override DESTDIR= on the make install command line to easily support |
|
63 # installing into a temporary location. Example: |
|
64 # |
|
65 # make install DESTDIR=/tmp/build/libpng |
|
66 # |
|
67 # If you're going to install into a temporary location |
|
68 # via DESTDIR, $(DESTDIR)$(prefix) must already exist before |
|
69 # you execute make install. |
|
70 DESTDIR= |
|
71 |
|
72 DB=$(DESTDIR)$(BINPATH) |
|
73 DI=$(DESTDIR)$(INCPATH) |
|
74 DL=$(DESTDIR)$(LIBPATH) |
|
75 DM=$(DESTDIR)$(MANPATH) |
|
76 |
|
77 OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \ |
|
78 pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \ |
|
79 pngwtran.o pngmem.o pngerror.o pngpread.o |
|
80 |
|
81 OBJSDLL = $(OBJS:.o=.pic.o) |
|
82 |
|
83 .SUFFIXES: .c .o .pic.o |
|
84 |
|
85 .c.pic.o: |
|
86 $(CC) -c $(CFLAGS) -KPIC -o $@ $*.c |
|
87 |
|
88 all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config |
|
89 |
|
90 libpng.a: $(OBJS) |
|
91 $(AR_RC) $@ $(OBJS) |
|
92 $(RANLIB) $@ |
|
93 |
|
94 libpng.pc: |
|
95 cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \ |
|
96 -e s!@exec_prefix@!$(exec_prefix)! \ |
|
97 -e s!@libdir@!$(LIBPATH)! \ |
|
98 -e s!@includedir@!$(INCPATH)! \ |
|
99 -e s!-lpng12!-lpng12\ -lz\ -lm! > libpng.pc |
|
100 |
|
101 libpng-config: |
|
102 ( cat scripts/libpng-config-head.in; \ |
|
103 echo prefix=\"$(prefix)\"; \ |
|
104 echo I_opts=\"-I$(INCPATH)/$(LIBNAME)\"; \ |
|
105 echo L_opts=\"-L$(LIBPATH)\"; \ |
|
106 echo R_opts=\"-R$(LIBPATH)\"; \ |
|
107 echo libs=\"-lpng12 -lz -lm\"; \ |
|
108 cat scripts/libpng-config-body.in ) > libpng-config |
|
109 chmod +x libpng-config |
|
110 |
|
111 $(LIBSO): $(LIBSOMAJ) |
|
112 $(LN_SF) $(LIBSOMAJ) $(LIBSO) |
|
113 |
|
114 $(LIBSOMAJ): $(LIBSOVER) |
|
115 $(LN_SF) $(LIBSOVER) $(LIBSOMAJ) |
|
116 |
|
117 $(LIBSOVER): $(OBJSDLL) |
|
118 @case "`type ld`" in *ucb*) \ |
|
119 echo; \ |
|
120 echo '## WARNING:'; \ |
|
121 echo '## The commands "CC" and "LD" must NOT refer to /usr/ucb/cc'; \ |
|
122 echo '## and /usr/ucb/ld. If they do, you need to adjust your PATH'; \ |
|
123 echo '## environment variable to put /usr/ccs/bin ahead of /usr/ucb.'; \ |
|
124 echo '## The environment variable LD_LIBRARY_PATH should not be set'; \ |
|
125 echo '## at all. If it is, things are likely to break because of'; \ |
|
126 echo '## the libucb dependency that is created.'; \ |
|
127 echo; \ |
|
128 ;; \ |
|
129 esac |
|
130 $(LD) -G -h $(LIBSOMAJ) \ |
|
131 -o $(LIBSOVER) $(OBJSDLL) |
|
132 |
|
133 $(OLDSOVER): $(OBJS) |
|
134 $(LD) -G -h $(OLDSOMAJ) \ |
|
135 -o $(OLDSOVER) $(OBJSDLL) |
|
136 |
|
137 pngtest: pngtest.o $(LIBSO) |
|
138 $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS) |
|
139 |
|
140 test: pngtest |
|
141 ./pngtest |
|
142 |
|
143 install-headers: png.h pngconf.h |
|
144 -@if [ ! -d $(DI) ]; then $(MKDIR_P) $(DI); fi |
|
145 -@if [ ! -d $(DI)/$(LIBNAME) ]; then $(MKDIR_P) $(DI)/$(LIBNAME); fi |
|
146 cp png.h pngconf.h $(DI)/$(LIBNAME) |
|
147 chmod 644 $(DI)/$(LIBNAME)/png.h $(DI)/$(LIBNAME)/pngconf.h |
|
148 -@$(RM_F) $(DI)/png.h $(DI)/pngconf.h |
|
149 -@$(RM_F) $(DI)/libpng |
|
150 (cd $(DI); $(LN_SF) $(LIBNAME) libpng; $(LN_SF) $(LIBNAME)/* .) |
|
151 |
|
152 install-static: install-headers libpng.a |
|
153 -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi |
|
154 cp libpng.a $(DL)/$(LIBNAME).a |
|
155 chmod 644 $(DL)/$(LIBNAME).a |
|
156 -@$(RM_F) $(DL)/libpng.a |
|
157 (cd $(DL); $(LN_SF) $(LIBNAME).a libpng.a) |
|
158 |
|
159 install-shared: install-headers $(LIBSOVER) libpng.pc \ |
|
160 $(OLDSOVER) |
|
161 -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi |
|
162 -@$(RM_F) $(DL)/$(LIBSOVER)* $(DL)/$(LIBSO) |
|
163 -@$(RM_F) $(DL)/$(LIBSOMAJ) |
|
164 -@$(RM_F) $(DL)/$(OLDSO) |
|
165 -@$(RM_F) $(DL)/$(OLDSOMAJ) |
|
166 -@$(RM_F) $(DL)/$(OLDSOVER)* |
|
167 cp $(LIBSOVER) $(DL) |
|
168 cp $(OLDSOVER) $(DL) |
|
169 chmod 755 $(DL)/$(LIBSOVER) |
|
170 chmod 755 $(DL)/$(OLDSOVER) |
|
171 (cd $(DL); \ |
|
172 $(LN_SF) $(OLDSOVER) $(OLDSOMAJ); \ |
|
173 $(LN_SF) $(OLDSOMAJ) $(OLDSO); \ |
|
174 $(LN_SF) $(LIBSOVER) $(LIBSOMAJ); \ |
|
175 $(LN_SF) $(LIBSOMAJ) $(LIBSO)) |
|
176 -@if [ ! -d $(DL)/pkgconfig ]; then $(MKDIR_P) $(DL)/pkgconfig; fi |
|
177 -@$(RM_F) $(DL)/pkgconfig/$(LIBNAME).pc |
|
178 -@$(RM_F) $(DL)/pkgconfig/libpng.pc |
|
179 cp libpng.pc $(DL)/pkgconfig/$(LIBNAME).pc |
|
180 chmod 644 $(DL)/pkgconfig/$(LIBNAME).pc |
|
181 (cd $(DL)/pkgconfig; $(LN_SF) $(LIBNAME).pc libpng.pc) |
|
182 |
|
183 install-man: libpng.3 libpngpf.3 png.5 |
|
184 -@if [ ! -d $(DM) ]; then $(MKDIR_P) $(DM); fi |
|
185 -@if [ ! -d $(DM)/man3 ]; then $(MKDIR_P) $(DM)/man3; fi |
|
186 -@$(RM_F) $(DM)/man3/libpng.3 |
|
187 -@$(RM_F) $(DM)/man3/libpngpf.3 |
|
188 cp libpng.3 $(DM)/man3 |
|
189 cp libpngpf.3 $(DM)/man3 |
|
190 -@if [ ! -d $(DM)/man5 ]; then $(MKDIR_P) $(DM)/man5; fi |
|
191 -@$(RM_F) $(DM)/man5/png.5 |
|
192 cp png.5 $(DM)/man5 |
|
193 |
|
194 install-config: libpng-config |
|
195 -@if [ ! -d $(DB) ]; then $(MKDIR_P) $(DB); fi |
|
196 -@$(RM_F) $(DB)/libpng-config |
|
197 -@$(RM_F) $(DB)/$(LIBNAME)-config |
|
198 cp libpng-config $(DB)/$(LIBNAME)-config |
|
199 chmod 755 $(DB)/$(LIBNAME)-config |
|
200 (cd $(DB); $(LN_SF) $(LIBNAME)-config libpng-config) |
|
201 |
|
202 install: install-static install-shared install-man install-config |
|
203 |
|
204 # If you installed in $(DESTDIR), test-installed won't work until you |
|
205 # move the library to its final location. Use test-dd to test it |
|
206 # before then. |
|
207 |
|
208 test-dd: |
|
209 echo |
|
210 echo Testing installed dynamic shared library in $(DL). |
|
211 $(CC) -I$(DI) -I$(ZLIBINC) \ |
|
212 `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \ |
|
213 -o pngtestd `$(BINPATH)/$(LIBNAME)-config --ldflags` \ |
|
214 -L$(DL) -L$(ZLIBLIB) -R$(ZLIBLIB) -R$(DL) |
|
215 ./pngtestd pngtest.png |
|
216 |
|
217 test-installed: |
|
218 echo |
|
219 echo Testing installed dynamic shared library. |
|
220 $(CC) -I$(ZLIBINC) \ |
|
221 `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \ |
|
222 -o pngtesti `$(BINPATH)/$(LIBNAME)-config --ldflags` \ |
|
223 -L$(ZLIBLIB) -R$(ZLIBLIB) |
|
224 ./pngtesti pngtest.png |
|
225 |
|
226 clean: |
|
227 $(RM_F) *.o libpng.a pngtest pngtesti pngout.png \ |
|
228 libpng-config $(LIBSO) $(LIBSOMAJ)* \ |
|
229 $(OLDSOVER) \ |
|
230 libpng.pc |
|
231 |
|
232 DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO |
|
233 writelock: |
|
234 chmod a-w *.[ch35] $(DOCS) scripts/* |
|
235 |
|
236 # DO NOT DELETE THIS LINE -- make depend depends on it. |
|
237 |
|
238 png.o png.pic.o: png.h pngconf.h |
|
239 pngerror.o pngerror.pic.o: png.h pngconf.h |
|
240 pngrio.o pngrio.pic.o: png.h pngconf.h |
|
241 pngwio.o pngwio.pic.o: png.h pngconf.h |
|
242 pngmem.o pngmem.pic.o: png.h pngconf.h |
|
243 pngset.o pngset.pic.o: png.h pngconf.h |
|
244 pngget.o pngget.pic.o: png.h pngconf.h |
|
245 pngread.o pngread.pic.o: png.h pngconf.h |
|
246 pngrtran.o pngrtran.pic.o: png.h pngconf.h |
|
247 pngrutil.o pngrutil.pic.o: png.h pngconf.h |
|
248 pngtrans.o pngtrans.pic.o: png.h pngconf.h |
|
249 pngwrite.o pngwrite.pic.o: png.h pngconf.h |
|
250 pngwtran.o pngwtran.pic.o: png.h pngconf.h |
|
251 pngwutil.o pngwutil.pic.o: png.h pngconf.h |
|
252 pngpread.o pngpread.pic.o: png.h pngconf.h |
|
253 |
|
254 pngtest.o: png.h pngconf.h |