blob: 3ce6fa9d6ef718c89ad76dc954c20a9ef5c0ed6d [file] [log] [blame]
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -05001# makefile for libpng on BeOS x86 ELF with gcc
Glenn Randers-Pehrsonbcfd15d1999-10-01 14:22:25 -05002# modified from makefile.linux by Sander Stoks
Glenn Randers-Pehrson5c5db5a2011-01-21 23:23:34 -06003# Copyright (C) 2002, 2006, 2008, 2010-2011 Glenn Randers-Pehrson
Glenn Randers-Pehrson98c9d732000-05-03 21:06:11 -05004# Copyright (C) 1999 Greg Roelofs
Glenn Randers-Pehrsond4366722000-06-04 14:29:29 -05005# Copyright (C) 1996, 1997 Andreas Dilger
Glenn Randers-Pehrson3e61d792009-06-24 09:31:28 -05006#
Glenn Randers-Pehrsonbfbf8652009-06-26 21:46:52 -05007# This code is released under the libpng license.
Glenn Randers-Pehrsonc332bbc2009-06-25 13:43:50 -05008# For conditions of distribution and use, see the disclaimer
Glenn Randers-Pehrson037023b2009-06-24 10:27:36 -05009# and license in png.h
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050010
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060011# Library name:
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -060012LIBNAME=libpng16
13PNGMAJ = 16
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060014
15# Shared library names:
16LIBSO=$(LIBNAME).so
17LIBSOMAJ=$(LIBNAME).so.$(PNGMAJ)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -060018LIBSOREL=$(LIBSOMAJ).$(RELEASE)
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060019OLDSO=libpng.so
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -060020
21# Utilities:
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050022CC=gcc
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060023AR_RC=ar rc
Glenn Randers-Pehrson170b70c2006-03-10 10:19:04 -060024MKDIR_P=mkdir -p
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060025LN_SF=ln -sf
26RANLIB=ranlib
27RM_F=/bin/rm -f
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050028
29# Where the zlib library and include files are located
30ZLIBLIB=/usr/local/lib
31ZLIBINC=/usr/local/include
32
33ALIGN=
Glenn Randers-Pehrsonf8b008c1999-09-18 10:54:36 -050034# For i386:
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050035# ALIGN=-malign-loops=2 -malign-functions=2
36
37WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow \
38 -Wmissing-declarations -Wtraditional -Wcast-align \
39 -Wstrict-prototypes -Wmissing-prototypes #-Wconversion
40
41# On BeOS, -O1 is actually better than -O3. This is a known bug but it's
42# still here in R4.5
Glenn Randers-Pehrson03f9b022009-12-04 08:40:41 -060043CFLAGS=-I$(ZLIBINC) -W -Wall -O1 -funroll-loops \
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050044 $(ALIGN) # $(WARNMORE) -g -DPNG_DEBUG=5
Glenn Randers-Pehrsona7d0c942006-04-14 06:22:52 -050045# LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng -lz
46LDFLAGS=-L. -Wl,-soname=$(LIBSOMAJ) -L$(ZLIBLIB) -lz
Glenn Randers-Pehrson5b5dcf82004-07-17 22:45:44 -050047
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -060048# where make install puts libpng.a, libpng16.so*, and png.h
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050049prefix=/usr/local
Glenn Randers-Pehrsonad310542006-04-18 05:31:20 -050050exec_prefix=$(prefix)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050051INCPATH=$(prefix)/include
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060052LIBPATH=$(exec_prefix)/lib
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050053MANPATH=$(prefix)/man
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060054BINPATH=$(exec_prefix)/bin
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050055
56# override DESTDIR= on the make install command line to easily support
57# installing into a temporary location. Example:
58#
59# make install DESTDIR=/tmp/build/libpng
60#
61# If you're going to install into a temporary location
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -050062# via DESTDIR, $(DESTDIR)$(prefix) must already exist before
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050063# you execute make install.
64DESTDIR=
65
Glenn Randers-Pehrson07748d12002-05-25 11:12:10 -050066DB=$(DESTDIR)$(BINPATH)
67DI=$(DESTDIR)$(INCPATH)
68DL=$(DESTDIR)$(LIBPATH)
69DM=$(DESTDIR)$(MANPATH)
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -050070
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050071OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
72 pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
73 pngwtran.o pngmem.o pngerror.o pngpread.o
74
75OBJSDLL = $(OBJS)
76
77.SUFFIXES: .c .o
78
Glenn Randers-Pehrson glennrp@comcast.net7ecf7bd2009-05-02 15:36:08 -050079all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050080
Glenn Randers-Pehrson72531442010-04-17 08:17:51 -050081# try include scripts/pnglibconf.mak for more options
Glenn Randers-Pehrson8c667862010-08-24 16:16:35 -050082pnglibconf.h: scripts/pnglibconf.h.prebuilt
83 cp scripts/pnglibconf.h.prebuilt $@
Glenn Randers-Pehrson72531442010-04-17 08:17:51 -050084
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050085libpng.a: $(OBJS)
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -060086 $(AR_RC) $@ $(OBJS)
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -050087 $(RANLIB) $@
88
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050089libpng.pc:
Glenn Randers-Pehrson glennrp@comcast.net7ecf7bd2009-05-02 15:36:08 -050090 cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
91 -e s!@exec_prefix@!$(exec_prefix)! \
92 -e s!@libdir@!$(LIBPATH)! \
93 -e s!@includedir@!$(INCPATH)! \
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -060094 -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -050095
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -050096libpng-config:
97 ( cat scripts/libpng-config-head.in; \
98 echo prefix=\"$(prefix)\"; \
Glenn Randers-Pehrson5ff38d32002-09-17 23:38:46 -050099 echo I_opts=\"-I$(INCPATH)/$(LIBNAME)\"; \
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -0600100 echo libs=\"-lpng16 -lz \"; \
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500101 cat scripts/libpng-config-body.in ) > libpng-config
102 chmod +x libpng-config
103
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600104$(LIBSO): $(LIBSOMAJ)
105 $(LN_SF) $(LIBSOMAJ) $(LIBSO)
106 cp $(LIBSO)* /boot/home/config/lib
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500107
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600108$(LIBSOMAJ): $(OBJSDLL)
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600109 $(CC) -nostart -Wl,-soname,$(LIBSOMAJ) -o \
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600110 $(LIBSOMAJ) $(OBJSDLL) $(LDFLAGS)
Glenn Randers-Pehrson glennrp@comcast.net7ecf7bd2009-05-02 15:36:08 -0500111
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600112pngtest: pngtest.o $(LIBSO)
Glenn Randers-Pehrson7455cbf2011-11-24 14:40:36 -0600113 $(CC) -L$(ZLIBLIB) -L. -lz -lpng16 -o pngtest pngtest.o
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500114
115test: pngtest
116 ./pngtest
117
Glenn Randers-Pehrson0b3634b2011-12-17 09:57:00 -0600118install-headers: png.h pngconf.h pnglibconf.h
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600119 -@if [ ! -d $(DI) ]; then $(MKDIR_P) $(DI); fi
120 -@if [ ! -d $(DI)/$(LIBNAME) ]; then $(MKDIR_P) $(DI)/$(LIBNAME); fi
Glenn Randers-Pehrson0b3634b2011-12-17 09:57:00 -0600121 cp png.h pngconf.h pnglibconf.h $(DI)/$(LIBNAME)
122 chmod 644 $(DI)/$(LIBNAME)/png.h $(DI)/$(LIBNAME)/pngconf.h $(DI)/$(LIBNAME)/pnglibconf.h
123 -@$(RM_F) $(DI)/png.h $(DI)/pngconf.h $(DI)/pnglibconf.h
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600124 -@$(RM_F) $(DI)/libpng
125 (cd $(DI); $(LN_SF) $(LIBNAME) libpng; $(LN_SF) $(LIBNAME)/* .)
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600126
127install-static: install-headers libpng.a
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600128 -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500129 cp libpng.a $(DL)/$(LIBNAME).a
130 chmod 644 $(DL)/$(LIBNAME).a
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600131 -@$(RM_F) $(DL)/libpng.a
132 (cd $(DL); $(LN_SF) $(LIBNAME).a libpng.a)
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600133
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600134install-shared: install-headers $(LIBSOMAJ) libpng.pc
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600135 -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600136 -@$(RM_F) $(DL)/$(LIBSO)
137 -@$(RM_F) $(DL)/$(LIBSOREL)
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600138 -@$(RM_F) $(DL)/$(OLDSO)
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600139 cp $(LIBSOMAJ) $(DL)/$(LIBSOREL)
140 chmod 755 $(DL)/$(LIBSOREL)
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500141 (cd $(DL); \
Glenn Randers-Pehrsone3f3c4e2010-02-07 18:08:50 -0600142 $(LN_SF) $(LIBSOREL) $(LIBSO); \
143 $(LN_SF) $(LIBSO) $(OLDSO))
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600144 -@if [ ! -d $(DL)/pkgconfig ]; then $(MKDIR_P) $(DL)/pkgconfig; fi
145 -@$(RM_F) $(DL)/pkgconfig/$(LIBNAME).pc
146 -@$(RM_F) $(DL)/pkgconfig/libpng.pc
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500147 cp libpng.pc $(DL)/pkgconfig/$(LIBNAME).pc
148 chmod 644 $(DL)/pkgconfig/$(LIBNAME).pc
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600149 (cd $(DL)/pkgconfig; $(LN_SF) $(LIBNAME).pc libpng.pc)
Glenn Randers-Pehrsonc1bfe682002-03-06 22:08:00 -0600150
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500151install-man: libpng.3 libpngpf.3 png.5
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600152 -@if [ ! -d $(DM) ]; then $(MKDIR_P) $(DM); fi
153 -@if [ ! -d $(DM)/man3 ]; then $(MKDIR_P) $(DM)/man3; fi
154 -@$(RM_F) $(DM)/man3/libpng.3
155 -@$(RM_F) $(DM)/man3/libpngpf.3
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500156 cp libpng.3 $(DM)/man3
157 cp libpngpf.3 $(DM)/man3
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600158 -@if [ ! -d $(DM)/man5 ]; then $(MKDIR_P) $(DM)/man5; fi
159 -@$(RM_F) $(DM)/man5/png.5
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500160 cp png.5 $(DM)/man5
Glenn Randers-Pehrson03008a02002-04-27 10:11:25 -0500161
Glenn Randers-Pehrson837a3d12002-05-10 20:19:58 -0500162install-config: libpng-config
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600163 -@if [ ! -d $(DB) ]; then $(MKDIR_P) $(DB); fi
164 -@$(RM_F) $(DB)/libpng-config
165 -@$(RM_F) $(DB)/$(LIBNAME)-config
Glenn Randers-Pehrsoncfbed9b2002-05-21 18:06:08 -0500166 cp libpng-config $(DB)/$(LIBNAME)-config
167 chmod 755 $(DB)/$(LIBNAME)-config
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600168 (cd $(DB); $(LN_SF) $(LIBNAME)-config libpng-config)
Glenn Randers-Pehrson704228f2002-05-02 20:49:40 -0500169
170install: install-static install-shared install-man install-config
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500171
Glenn Randers-Pehrsond020e9d2002-06-28 09:34:00 -0500172# If you installed in $(DESTDIR), test-installed won't work until you
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -0500173# move the library to its final location. Use test-dd to test it
174# before then.
175
176test-dd:
177 echo
178 echo Testing installed dynamic shared library in $(DL).
179 $(CC) -I$(DI) $(CFLAGS) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600180 `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
Glenn Randers-Pehrson6bc53be2006-06-16 07:52:03 -0500181 -L$(DL) -L$(ZLIBLIB) -Wl,-rpath $(ZLIBLIB):$(DL) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600182 -o pngtestd `$(BINPATH)/$(LIBNAME)-config --ldflags`
Glenn Randers-Pehrsona4981d42004-08-25 22:00:45 -0500183 ./pngtestd pngtest.png
Glenn Randers-Pehrsond020e9d2002-06-28 09:34:00 -0500184
185test-installed:
186 $(CC) $(CFLAGS) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600187 `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
Glenn Randers-Pehrsond020e9d2002-06-28 09:34:00 -0500188 -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) \
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600189 -o pngtesti `$(BINPATH)/$(LIBNAME)-config --ldflags`
Glenn Randers-Pehrson2ae022d2002-07-01 22:23:46 -0500190 ./pngtesti pngtest.png
Glenn Randers-Pehrsond020e9d2002-06-28 09:34:00 -0500191
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500192clean:
Glenn Randers-Pehrson5c60b232006-03-07 07:09:22 -0600193 $(RM_F) *.o libpng.a pngtest pngout.png libpng-config \
Glenn Randers-Pehrson4deeb792006-03-22 16:21:59 -0600194 $(LIBSO) $(LIBSOMAJ)* pngtesti \
Glenn Randers-Pehrson72531442010-04-17 08:17:51 -0500195 pnglibconf.h libpng.pc
Glenn Randers-Pehrson4393a9a1999-09-17 12:27:26 -0500196
197# DO NOT DELETE THIS LINE -- make depend depends on it.
198
Glenn Randers-Pehrsonefaeada2011-12-17 09:06:34 -0600199png.o png.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
200pngerror.o pngerror.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
201pngrio.o pngrio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
202pngwio.o pngwio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
203pngmem.o pngmem.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
204pngset.o pngset.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
205pngget.o pngget.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
206pngread.o pngread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
207pngrtran.o pngrtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
208pngrutil.o pngrutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
209pngtrans.o pngtrans.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
210pngwrite.o pngwrite.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
211pngwtran.o pngwtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
212pngwutil.o pngwutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
213pngpread.o pngpread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h pngconfig.h
Glenn Randers-Pehrson glennrp@comcast.net7ecf7bd2009-05-02 15:36:08 -0500214
Glenn Randers-Pehrson0b3634b2011-12-17 09:57:00 -0600215pngtest.o: png.h pngconf.h pnglibconf.h