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, 2010-2011 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: 13PNGMAJ = 15 14LIBNAME = libpng15 15 16# Shared library names: 17LIBSO=$(LIBNAME).so 18LIBSOMAJ=$(LIBNAME).so.$(PNGMAJ) 19LIBSOREL=$(LIBSOMAJ).$(RELEASE) 20OLDSO=libpng.so 21 22# Utilities: 23# gcc 2.95 doesn't work. 24CC=cc 25AR_RC=ar rc 26MKDIR_P=mkdir -p 27LN_SF=ln -f -s 28RANLIB=echo 29RM_F=/bin/rm -f 30 31# Where make install puts libpng.a, $(OLDSO)*, and png.h 32prefix=/usr/local 33exec_prefix=$(prefix) 34 35# Where the zlib library and include files are located 36# Changing these to ../zlib poses a security risk. If you want 37# to have zlib in an adjacent directory, specify the full path instead of "..". 38#ZLIBLIB=../zlib 39#ZLIBINC=../zlib 40#ZLIBLIB=/usr/local/lib 41#ZLIBINC=/usr/local/include 42#Use the preinstalled zlib that comes with Solaris 9: 43ZLIBLIB=/usr/lib 44ZLIBINC=/usr/include 45 46#WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow \ 47 -Wmissing-declarations -Wtraditional -Wcast-align \ 48 -Wstrict-prototypes -Wmissing-prototypes #-Wconversion 49#CFLAGS=-I$(ZLIBINC) -W -Wall -O3 $(WARNMORE) -g -DPNG_DEBUG=5 -DPNG_NO_MMX_CODE 50CFLAGS=-I$(ZLIBINC) -O3 -DPNG_NO_MMX_CODE 51LDFLAGS=-L. -R. -L$(ZLIBLIB) -R$(ZLIBLIB) -lpng15 -lz -lm 52 53INCPATH=$(prefix)/include 54LIBPATH=$(exec_prefix)/lib 55MANPATH=$(prefix)/man 56BINPATH=$(exec_prefix)/bin 57 58# override DESTDIR= on the make install command line to easily support 59# installing into a temporary location. Example: 60# 61# make install DESTDIR=/tmp/build/libpng 62# 63# If you're going to install into a temporary location 64# via DESTDIR, $(DESTDIR)$(prefix) must already exist before 65# you execute make install. 66DESTDIR= 67 68DB=$(DESTDIR)$(BINPATH) 69DI=$(DESTDIR)$(INCPATH) 70DL=$(DESTDIR)$(LIBPATH) 71DM=$(DESTDIR)$(MANPATH) 72 73OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \ 74 pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \ 75 pngwtran.o pngmem.o pngerror.o pngpread.o 76 77OBJSDLL = $(OBJS:.o=.pic.o) 78 79.SUFFIXES: .c .o .pic.o 80 81.c.pic.o: 82 $(CC) -c $(CFLAGS) -KPIC -o $@ $*.c 83 84all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config 85 86# see scripts/pnglibconf.mak for more options 87pnglibconf.h: scripts/pnglibconf.h.prebuilt 88 cp scripts/pnglibconf.h.prebuilt $@ 89 90libpng.a: $(OBJS) 91 $(AR_RC) $@ $(OBJS) 92 $(RANLIB) $@ 93 94libpng.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!-lpng15!-lpng15\ -lz\ -lm! > libpng.pc 100 101libpng-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=\"-lpng15 -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): $(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 $(LIBSOMAJ) $(OBJSDLL) 129 130pngtest: pngtest.o $(LIBSO) 131 $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS) 132 133test: pngtest 134 ./pngtest 135 136install-headers: png.h pngconf.h pnglibconf.h 137 -@if [ ! -d $(DI) ]; then $(MKDIR_P) $(DI); fi 138 -@if [ ! -d $(DI)/$(LIBNAME) ]; then $(MKDIR_P) $(DI)/$(LIBNAME); fi 139 cp png.h pngconf.h pnglibconf.h $(DI)/$(LIBNAME) 140 chmod 644 $(DI)/$(LIBNAME)/png.h $(DI)/$(LIBNAME)/pngconf.h $(DI)/$(LIBNAME)/pnglibconf.h 141 -@$(RM_F) $(DI)/png.h $(DI)/pngconf.h $(DI)/pnglibconf.h 142 -@$(RM_F) $(DI)/libpng 143 (cd $(DI); $(LN_SF) $(LIBNAME) libpng; $(LN_SF) $(LIBNAME)/* .) 144 145install-static: install-headers libpng.a 146 -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi 147 cp libpng.a $(DL)/$(LIBNAME).a 148 chmod 644 $(DL)/$(LIBNAME).a 149 -@$(RM_F) $(DL)/libpng.a 150 (cd $(DL); $(LN_SF) $(LIBNAME).a libpng.a) 151 152install-shared: install-headers $(LIBSOMAJ) libpng.pc 153 -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi 154 -@$(RM_F) $(DL)/$(LIBSO) 155 -@$(RM_F) $(DL)/$(LIBSOREL) 156 -@$(RM_F) $(DL)/$(OLDSO) 157 cp $(LIBSOMAJ) $(DL)/$(LIBSOREL) 158 chmod 755 $(DL)/$(LIBSOREL) 159 (cd $(DL); \ 160 $(LN_SF) $(LIBSOREL) $(LIBSO); \ 161 $(LN_SF) $(LIBSO) $(OLDSO)) 162 -@if [ ! -d $(DL)/pkgconfig ]; then $(MKDIR_P) $(DL)/pkgconfig; fi 163 -@$(RM_F) $(DL)/pkgconfig/$(LIBNAME).pc 164 -@$(RM_F) $(DL)/pkgconfig/libpng.pc 165 cp libpng.pc $(DL)/pkgconfig/$(LIBNAME).pc 166 chmod 644 $(DL)/pkgconfig/$(LIBNAME).pc 167 (cd $(DL)/pkgconfig; $(LN_SF) $(LIBNAME).pc libpng.pc) 168 169install-man: libpng.3 libpngpf.3 png.5 170 -@if [ ! -d $(DM) ]; then $(MKDIR_P) $(DM); fi 171 -@if [ ! -d $(DM)/man3 ]; then $(MKDIR_P) $(DM)/man3; fi 172 -@$(RM_F) $(DM)/man3/libpng.3 173 -@$(RM_F) $(DM)/man3/libpngpf.3 174 cp libpng.3 $(DM)/man3 175 cp libpngpf.3 $(DM)/man3 176 -@if [ ! -d $(DM)/man5 ]; then $(MKDIR_P) $(DM)/man5; fi 177 -@$(RM_F) $(DM)/man5/png.5 178 cp png.5 $(DM)/man5 179 180install-config: libpng-config 181 -@if [ ! -d $(DB) ]; then $(MKDIR_P) $(DB); fi 182 -@$(RM_F) $(DB)/libpng-config 183 -@$(RM_F) $(DB)/$(LIBNAME)-config 184 cp libpng-config $(DB)/$(LIBNAME)-config 185 chmod 755 $(DB)/$(LIBNAME)-config 186 (cd $(DB); $(LN_SF) $(LIBNAME)-config libpng-config) 187 188install: install-static install-shared install-man install-config 189 190# If you installed in $(DESTDIR), test-installed won't work until you 191# move the library to its final location. Use test-dd to test it 192# before then. 193 194test-dd: 195 echo 196 echo Testing installed dynamic shared library in $(DL). 197 $(CC) -I$(DI) -I$(ZLIBINC) \ 198 `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \ 199 -o pngtestd `$(BINPATH)/$(LIBNAME)-config --ldflags` \ 200 -L$(DL) -L$(ZLIBLIB) -R$(ZLIBLIB) -R$(DL) 201 ./pngtestd pngtest.png 202 203test-installed: 204 echo 205 echo Testing installed dynamic shared library. 206 $(CC) -I$(ZLIBINC) \ 207 `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \ 208 -o pngtesti `$(BINPATH)/$(LIBNAME)-config --ldflags` \ 209 -L$(ZLIBLIB) -R$(ZLIBLIB) 210 ./pngtesti pngtest.png 211 212clean: 213 $(RM_F) *.o libpng.a pngtest pngtesti pngout.png \ 214 libpng-config $(LIBSO) $(LIBSOMAJ)* \ 215 libpng.pc pnglibconf.h 216 217DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO 218writelock: 219 chmod a-w *.[ch35] $(DOCS) scripts/* 220 221# DO NOT DELETE THIS LINE -- make depend depends on it. 222 223png.o png.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 224pngerror.o pngerror.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 225pngrio.o pngrio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 226pngwio.o pngwio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 227pngmem.o pngmem.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 228pngset.o pngset.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 229pngget.o pngget.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 230pngread.o pngread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 231pngrtran.o pngrtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 232pngrutil.o pngrutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 233pngtrans.o pngtrans.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 234pngwrite.o pngwrite.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 235pngwtran.o pngwtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 236pngwutil.o pngwutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 237pngpread.o pngpread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h 238 239pngtest.o: png.h pngconf.h pnglibconf.h 240