]> git.saurik.com Git - wxWidgets.git/blame - src/png/scripts/makefile.so9
Use sheets for native file dialogs if the dialog has its parent set.
[wxWidgets.git] / src / png / scripts / makefile.so9
CommitLineData
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:
10PNGMAJ = 0
970f6abe 11PNGMIN = 1.2.34
0272a10d
VZ
12PNGVER = $(PNGMAJ).$(PNGMIN)
13LIBNAME = libpng12
14
15# Shared library names:
16LIBSO=$(LIBNAME).so
17LIBSOMAJ=$(LIBNAME).so.$(PNGMAJ)
18LIBSOVER=$(LIBNAME).so.$(PNGVER)
19OLDSO=libpng.so
20OLDSOMAJ=libpng.so.3
21OLDSOVER=libpng.so.3.$(PNGMIN)
22
23# Utilities:
24# gcc 2.95 doesn't work.
25CC=cc
26AR_RC=ar rc
27MKDIR_P=mkdir -p
28LN_SF=ln -f -s
29RANLIB=echo
30RM_F=/bin/rm -f
31
32# Where make install puts libpng.a, $(OLDSO)*, and png.h
33prefix=/usr/local
34exec_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:
44ZLIBLIB=/usr/lib
45ZLIBINC=/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
51CFLAGS=-I$(ZLIBINC) -O3 -DPNG_NO_MMX_CODE
52LDFLAGS=-L. -R. -L$(ZLIBLIB) -R$(ZLIBLIB) -lpng12 -lz -lm
53
54INCPATH=$(prefix)/include
55LIBPATH=$(exec_prefix)/lib
56MANPATH=$(prefix)/man
57BINPATH=$(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.
67DESTDIR=
68
69DB=$(DESTDIR)$(BINPATH)
70DI=$(DESTDIR)$(INCPATH)
71DL=$(DESTDIR)$(LIBPATH)
72DM=$(DESTDIR)$(MANPATH)
73
74OBJS = 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
78OBJSDLL = $(OBJS:.o=.pic.o)
79
80.SUFFIXES: .c .o .pic.o
81
82.c.pic.o:
83 $(CC) -c $(CFLAGS) -KPIC -o $@ $*.c
84
85all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
86
87libpng.a: $(OBJS)
88 $(AR_RC) $@ $(OBJS)
89 $(RANLIB) $@
90
91libpng.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
98libpng-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
134pngtest: pngtest.o $(LIBSO)
135 $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
136
137test: pngtest
138 ./pngtest
139
140install-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
149install-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
156install-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
180install-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
191install-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
199install: 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
205test-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
214test-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
223clean:
224 $(RM_F) *.o libpng.a pngtest pngtesti pngout.png \
225 libpng-config $(LIBSO) $(LIBSOMAJ)* \
226 $(OLDSOVER) \
227 libpng.pc
228
229DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
230writelock:
231 chmod a-w *.[ch35] $(DOCS) scripts/*
232
233# DO NOT DELETE THIS LINE -- make depend depends on it.
234
235png.o png.pic.o: png.h pngconf.h
236pngerror.o pngerror.pic.o: png.h pngconf.h
237pngrio.o pngrio.pic.o: png.h pngconf.h
238pngwio.o pngwio.pic.o: png.h pngconf.h
239pngmem.o pngmem.pic.o: png.h pngconf.h
240pngset.o pngset.pic.o: png.h pngconf.h
241pngget.o pngget.pic.o: png.h pngconf.h
242pngread.o pngread.pic.o: png.h pngconf.h
243pngrtran.o pngrtran.pic.o: png.h pngconf.h
244pngrutil.o pngrutil.pic.o: png.h pngconf.h
245pngtrans.o pngtrans.pic.o: png.h pngconf.h
246pngwrite.o pngwrite.pic.o: png.h pngconf.h
247pngwtran.o pngwtran.pic.o: png.h pngconf.h
248pngwutil.o pngwutil.pic.o: png.h pngconf.h
249pngpread.o pngpread.pic.o: png.h pngconf.h
250
251pngtest.o: png.h pngconf.h