makefile.beos 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. # makefile for libpng on BeOS x86 ELF with gcc
  2. # modified from makefile.linux by Sander Stoks
  3. # Copyright (C) 2002, 2006, 2008, 2010-2014 Glenn Randers-Pehrson
  4. # Copyright (C) 1999 Greg Roelofs
  5. # Copyright (C) 1996, 1997 Andreas Dilger
  6. #
  7. # This code is released under the libpng license.
  8. # For conditions of distribution and use, see the disclaimer
  9. # and license in png.h
  10. # Library name:
  11. LIBNAME=libpng16
  12. PNGMAJ = 16
  13. # Shared library names:
  14. LIBSO=$(LIBNAME).so
  15. LIBSOMAJ=$(LIBNAME).so.$(PNGMAJ)
  16. LIBSOREL=$(LIBSOMAJ).$(RELEASE)
  17. OLDSO=libpng.so
  18. # Utilities:
  19. CC=gcc
  20. AR_RC=ar rc
  21. MKDIR_P=mkdir -p
  22. LN_SF=ln -sf
  23. RANLIB=ranlib
  24. CP=cp
  25. RM_F=/bin/rm -f
  26. # Where the zlib library and include files are located
  27. ZLIBLIB=/usr/local/lib
  28. ZLIBINC=/usr/local/include
  29. ALIGN=
  30. # For i386:
  31. # ALIGN=-malign-loops=2 -malign-functions=2
  32. WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow \
  33. -Wmissing-declarations -Wtraditional -Wcast-align \
  34. -Wstrict-prototypes -Wmissing-prototypes #-Wconversion
  35. # On BeOS, -O1 is actually better than -O3. This is a known bug but it's
  36. # still here in R4.5
  37. CPPFLAGS=-I$(ZLIBINC) # -DPNG_DEBUG=5
  38. CFLAGS=-W -Wall -O1 -funroll-loops $(ALIGN) # $(WARNMORE) -g
  39. # LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng -lz
  40. LDFLAGS=-L. -Wl,-soname=$(LIBSOMAJ) -L$(ZLIBLIB) -lz
  41. # where make install puts libpng.a, libpng16.so*, and png.h
  42. prefix=/usr/local
  43. exec_prefix=$(prefix)
  44. INCPATH=$(prefix)/include
  45. LIBPATH=$(exec_prefix)/lib
  46. MANPATH=$(prefix)/man
  47. BINPATH=$(exec_prefix)/bin
  48. # override DESTDIR= on the make install command line to easily support
  49. # installing into a temporary location. Example:
  50. #
  51. # make install DESTDIR=/tmp/build/libpng
  52. #
  53. # If you're going to install into a temporary location
  54. # via DESTDIR, $(DESTDIR)$(prefix) must already exist before
  55. # you execute make install.
  56. DESTDIR=
  57. DB=$(DESTDIR)$(BINPATH)
  58. DI=$(DESTDIR)$(INCPATH)
  59. DL=$(DESTDIR)$(LIBPATH)
  60. DM=$(DESTDIR)$(MANPATH)
  61. # Pre-built configuration
  62. # See scripts/pnglibconf.mak for more options
  63. PNGLIBCONF_H_PREBUILT = scripts/pnglibconf.h.prebuilt
  64. OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
  65. pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
  66. pngwtran.o pngmem.o pngerror.o pngpread.o
  67. OBJSDLL = $(OBJS)
  68. .SUFFIXES: .c .o
  69. .c.o:
  70. $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
  71. all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
  72. pnglibconf.h: $(PNGLIBCONF_H_PREBUILT)
  73. $(CP) $(PNGLIBCONF_H_PREBUILT) $@
  74. libpng.a: $(OBJS)
  75. $(AR_RC) $@ $(OBJS)
  76. $(RANLIB) $@
  77. libpng.pc:
  78. cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
  79. -e s!@exec_prefix@!$(exec_prefix)! \
  80. -e s!@libdir@!$(LIBPATH)! \
  81. -e s!@includedir@!$(INCPATH)! \
  82. -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
  83. libpng-config:
  84. ( cat scripts/libpng-config-head.in; \
  85. echo prefix=\"$(prefix)\"; \
  86. echo I_opts=\"-I$(INCPATH)/$(LIBNAME)\"; \
  87. echo libs=\"-lpng16 -lz \"; \
  88. cat scripts/libpng-config-body.in ) > libpng-config
  89. chmod +x libpng-config
  90. $(LIBSO): $(LIBSOMAJ)
  91. $(LN_SF) $(LIBSOMAJ) $(LIBSO)
  92. cp $(LIBSO)* /boot/home/config/lib
  93. $(LIBSOMAJ): $(OBJSDLL)
  94. $(CC) -nostart -Wl,-soname,$(LIBSOMAJ) -o \
  95. $(LIBSOMAJ) $(OBJSDLL) $(LDFLAGS)
  96. pngtest: pngtest.o $(LIBSO)
  97. $(CC) -L$(ZLIBLIB) -L. -lz -lpng16 -o pngtest pngtest.o
  98. test: pngtest
  99. ./pngtest
  100. install-headers: png.h pngconf.h pnglibconf.h
  101. -@if [ ! -d $(DI) ]; then $(MKDIR_P) $(DI); fi
  102. -@if [ ! -d $(DI)/$(LIBNAME) ]; then $(MKDIR_P) $(DI)/$(LIBNAME); fi
  103. cp png.h pngconf.h pnglibconf.h $(DI)/$(LIBNAME)
  104. chmod 644 $(DI)/$(LIBNAME)/png.h $(DI)/$(LIBNAME)/pngconf.h $(DI)/$(LIBNAME)/pnglibconf.h
  105. -@$(RM_F) $(DI)/png.h $(DI)/pngconf.h $(DI)/pnglibconf.h
  106. -@$(RM_F) $(DI)/libpng
  107. (cd $(DI); $(LN_SF) $(LIBNAME) libpng; $(LN_SF) $(LIBNAME)/* .)
  108. install-static: install-headers libpng.a
  109. -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
  110. cp libpng.a $(DL)/$(LIBNAME).a
  111. chmod 644 $(DL)/$(LIBNAME).a
  112. -@$(RM_F) $(DL)/libpng.a
  113. (cd $(DL); $(LN_SF) $(LIBNAME).a libpng.a)
  114. install-shared: install-headers $(LIBSOMAJ) libpng.pc
  115. -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
  116. -@$(RM_F) $(DL)/$(LIBSO)
  117. -@$(RM_F) $(DL)/$(LIBSOREL)
  118. -@$(RM_F) $(DL)/$(OLDSO)
  119. cp $(LIBSOMAJ) $(DL)/$(LIBSOREL)
  120. chmod 755 $(DL)/$(LIBSOREL)
  121. (cd $(DL); \
  122. $(LN_SF) $(LIBSOREL) $(LIBSO); \
  123. $(LN_SF) $(LIBSO) $(OLDSO))
  124. -@if [ ! -d $(DL)/pkgconfig ]; then $(MKDIR_P) $(DL)/pkgconfig; fi
  125. -@$(RM_F) $(DL)/pkgconfig/$(LIBNAME).pc
  126. -@$(RM_F) $(DL)/pkgconfig/libpng.pc
  127. cp libpng.pc $(DL)/pkgconfig/$(LIBNAME).pc
  128. chmod 644 $(DL)/pkgconfig/$(LIBNAME).pc
  129. (cd $(DL)/pkgconfig; $(LN_SF) $(LIBNAME).pc libpng.pc)
  130. install-man: libpng.3 libpngpf.3 png.5
  131. -@if [ ! -d $(DM) ]; then $(MKDIR_P) $(DM); fi
  132. -@if [ ! -d $(DM)/man3 ]; then $(MKDIR_P) $(DM)/man3; fi
  133. -@$(RM_F) $(DM)/man3/libpng.3
  134. -@$(RM_F) $(DM)/man3/libpngpf.3
  135. cp libpng.3 $(DM)/man3
  136. cp libpngpf.3 $(DM)/man3
  137. -@if [ ! -d $(DM)/man5 ]; then $(MKDIR_P) $(DM)/man5; fi
  138. -@$(RM_F) $(DM)/man5/png.5
  139. cp png.5 $(DM)/man5
  140. install-config: libpng-config
  141. -@if [ ! -d $(DB) ]; then $(MKDIR_P) $(DB); fi
  142. -@$(RM_F) $(DB)/libpng-config
  143. -@$(RM_F) $(DB)/$(LIBNAME)-config
  144. cp libpng-config $(DB)/$(LIBNAME)-config
  145. chmod 755 $(DB)/$(LIBNAME)-config
  146. (cd $(DB); $(LN_SF) $(LIBNAME)-config libpng-config)
  147. install: install-static install-shared install-man install-config
  148. # If you installed in $(DESTDIR), test-installed won't work until you
  149. # move the library to its final location. Use test-dd to test it
  150. # before then.
  151. test-dd:
  152. echo
  153. echo Testing installed dynamic shared library in $(DL).
  154. $(CC) -I$(DI) $(CPPFLAGS) $(CFLAGS) \
  155. `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
  156. -L$(DL) -L$(ZLIBLIB) -Wl,-rpath $(ZLIBLIB):$(DL) \
  157. -o pngtestd `$(BINPATH)/$(LIBNAME)-config --ldflags`
  158. ./pngtestd pngtest.png
  159. test-installed:
  160. $(CC) $(CPPFLAGS) $(CFLAGS) \
  161. `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
  162. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) \
  163. -o pngtesti `$(BINPATH)/$(LIBNAME)-config --ldflags`
  164. ./pngtesti pngtest.png
  165. clean:
  166. $(RM_F) *.o libpng.a pngtest pngout.png libpng-config \
  167. $(LIBSO) $(LIBSOMAJ)* pngtesti \
  168. pnglibconf.h libpng.pc
  169. # DO NOT DELETE THIS LINE -- make depend depends on it.
  170. png.o png.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  171. pngerror.o pngerror.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  172. pngrio.o pngrio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  173. pngwio.o pngwio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  174. pngmem.o pngmem.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  175. pngset.o pngset.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  176. pngget.o pngget.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  177. pngread.o pngread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  178. pngrtran.o pngrtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  179. pngrutil.o pngrutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  180. pngtrans.o pngtrans.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  181. pngwrite.o pngwrite.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  182. pngwtran.o pngwtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  183. pngwutil.o pngwutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  184. pngpread.o pngpread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  185. pngtest.o: png.h pngconf.h pnglibconf.h