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