makefile.hpgcc 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. # makefile for libpng on HP-UX using GCC with the HP ANSI/C linker.
  2. # Copyright (C) 2002, 2006-2008, 2010-2014 Glenn Randers-Pehrson
  3. # Copyright (C) 2001, Laurent faillie
  4. # Copyright (C) 1998, 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).sl
  15. LIBSOMAJ=$(LIBNAME).sl.$(PNGMAJ)
  16. LIBSOREL=$(LIBSOMAJ).$(RELEASE)
  17. OLDSO=libpng.sl
  18. # Utilities:
  19. CC=gcc
  20. LD=ld
  21. AR_RC=ar rc
  22. MKDIR_P=mkdir -p
  23. LN_SF=ln -sf
  24. RANLIB=ranlib
  25. RM_F=/bin/rm -f
  26. # where "make install" puts libpng.a, $(OLDSO)*, png.h, pngconf.h
  27. # and pnglibconf.h
  28. prefix=/usr/local
  29. exec_prefix=$(prefix)
  30. # Where the zlib library and include files are located
  31. ZLIBLIB=/opt/zlib/lib
  32. ZLIBINC=/opt/zlib/include
  33. # Note that if you plan to build a libpng shared library, zlib must also
  34. # be a shared library, which zlib's configure does not do. After running
  35. # zlib's configure, edit the appropriate lines of makefile to read:
  36. # CFLAGS=-O1 -DHAVE_UNISTD -DUSE_MAP -fPIC \
  37. # LDSHARED=ld -b
  38. # SHAREDLIB=libz.sl
  39. ALIGN=
  40. # for i386:
  41. #ALIGN=-malign-loops=2 -malign-functions=2
  42. WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow \
  43. -Wmissing-declarations -Wtraditional -Wcast-align \
  44. -Wstrict-prototypes -Wmissing-prototypes #-Wconversion
  45. # for pgcc version 2.95.1, -O3 is buggy; don't use it.
  46. CPPFLAGS=-I$(ZLIBINC) # -DPNG_DEBUG=5
  47. CFLAGS=-W -Wall -O3 -funroll-loops $(ALIGN) # $(WARNMORE) -g
  48. #LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng16 -lz -lm
  49. LDFLAGS=-L. -L$(ZLIBLIB) -lpng16 -lz -lm
  50. INCPATH=$(prefix)/include
  51. LIBPATH=$(exec_prefix)/lib
  52. MANPATH=$(prefix)/man
  53. BINPATH=$(exec_prefix)/bin
  54. # override DESTDIR= on the make install command line to easily support
  55. # installing into a temporary location. Example:
  56. #
  57. # make install DESTDIR=/tmp/build/libpng
  58. #
  59. # If you're going to install into a temporary location
  60. # via DESTDIR, $(DESTDIR)$(prefix) must already exist before
  61. # you execute make install.
  62. DESTDIR=
  63. DB=$(DESTDIR)$(BINPATH)
  64. DI=$(DESTDIR)$(INCPATH)
  65. DL=$(DESTDIR)$(LIBPATH)
  66. DM=$(DESTDIR)$(MANPATH)
  67. OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
  68. pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
  69. pngwtran.o pngmem.o pngerror.o pngpread.o
  70. OBJSDLL = $(OBJS:.o=.pic.o)
  71. .SUFFIXES: .c .o .pic.o
  72. .c.o:
  73. $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
  74. .c.pic.o:
  75. $(CC) -c $(CPPFLAGS) $(CFLAGS) -fPIC -o $@ $*.c
  76. all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
  77. libpng.a: $(OBJS)
  78. $(AR_RC) $@ $(OBJS)
  79. $(RANLIB) $@
  80. libpng.pc:
  81. cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
  82. -e s!@exec_prefix@!$(exec_prefix)! \
  83. -e s!@libdir@!$(LIBPATH)! \
  84. -e s!@includedir@!$(INCPATH)! \
  85. -e s!-lpng16!-lpng16\ -lz\ -lm! > libpng.pc
  86. libpng-config:
  87. ( cat scripts/libpng-config-head.in; \
  88. echo prefix=\"$(prefix)\"; \
  89. echo I_opts=\"-I$(INCPATH)/$(LIBNAME)\"; \
  90. echo libs=\"-lpng16 -lz -lm\"; \
  91. cat scripts/libpng-config-body.in ) > libpng-config
  92. chmod +x libpng-config
  93. $(LIBSO): $(LIBSOMAJ)
  94. $(LN_SF) $(LIBSOMAJ) $(LIBSO)
  95. $(LIBSOMAJ): $(OBJSDLL)
  96. $(LD) -b +s \
  97. +h $(LIBSOMAJ) -o $(LIBSOMAJ) $(OBJSDLL)
  98. pngtest: pngtest.o $(LIBSO)
  99. $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
  100. test: pngtest
  101. ./pngtest
  102. install-headers: png.h pngconf.h pnglibconf.h
  103. -@if [ ! -d $(DI) ]; then $(MKDIR_P) $(DI); fi
  104. -@if [ ! -d $(DI)/$(LIBNAME) ]; then $(MKDIR_P) $(DI)/$(LIBNAME); fi
  105. cp png.h pngconf.h pnglibconf.h $(DI)/$(LIBNAME)
  106. chmod 644 $(DI)/$(LIBNAME)/png.h $(DI)/$(LIBNAME)/pngconf.h $(DI)/$(LIBNAME)/pnglibconf.h
  107. -@$(RM_F) $(DI)/png.h $(DI)/pngconf.h $(DI)/pnglibconf.h
  108. -@$(RM_F) $(DI)/libpng
  109. (cd $(DI); $(LN_SF) $(LIBNAME) libpng; $(LN_SF) $(LIBNAME)/* .)
  110. install-static: install-headers libpng.a
  111. -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
  112. cp libpng.a $(DL)/$(LIBNAME).a
  113. chmod 644 $(DL)/$(LIBNAME).a
  114. -@$(RM_F) $(DL)/libpng.a
  115. (cd $(DL); $(LN_SF) $(LIBNAME).a libpng.a)
  116. install-shared: install-headers $(LIBSOMAJ) libpng.pc
  117. -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
  118. -@$(RM_F) $(DL)/$(LIBSO)
  119. -@$(RM_F) $(DL)/$(LIBSOREL)
  120. -@$(RM_F) $(DL)/$(OLDSO)
  121. cp $(LIBSOMAJ) $(DL)/$(LIBSOREL)
  122. chmod 755 $(DL)/$(LIBSOREL)
  123. (cd $(DL); \
  124. $(LN_SF) $(LIBSOREL) $(LIBSO); \
  125. $(LN_SF) $(LIBSO) $(OLDSO))
  126. -@if [ ! -d $(DL)/pkgconfig ]; then $(MKDIR_P) $(DL)/pkgconfig; fi
  127. -@$(RM_F) $(DL)/pkgconfig/$(LIBNAME).pc
  128. -@$(RM_F) $(DL)/pkgconfig/libpng.pc
  129. cp libpng.pc $(DL)/pkgconfig/$(LIBNAME).pc
  130. chmod 644 $(DL)/pkgconfig/$(LIBNAME).pc
  131. (cd $(DL)/pkgconfig; $(LN_SF) $(LIBNAME).pc libpng.pc)
  132. install-man: libpng.3 libpngpf.3 png.5
  133. -@if [ ! -d $(DM) ]; then $(MKDIR_P) $(DM); fi
  134. -@if [ ! -d $(DM)/man3 ]; then $(MKDIR_P) $(DM)/man3; fi
  135. -@$(RM_F) $(DM)/man3/libpng.3
  136. -@$(RM_F) $(DM)/man3/libpngpf.3
  137. cp libpng.3 $(DM)/man3
  138. cp libpngpf.3 $(DM)/man3
  139. -@if [ ! -d $(DM)/man5 ]; then $(MKDIR_P) $(DM)/man5; fi
  140. -@$(RM_F) $(DM)/man5/png.5
  141. cp png.5 $(DM)/man5
  142. install-config: libpng-config
  143. -@if [ ! -d $(DB) ]; then $(MKDIR_P) $(DB); fi
  144. -@$(RM_F) $(DB)/libpng-config
  145. -@$(RM_F) $(DB)/$(LIBNAME)-config
  146. cp libpng-config $(DB)/$(LIBNAME)-config
  147. chmod 755 $(DB)/$(LIBNAME)-config
  148. (cd $(DB); $(LN_SF) $(LIBNAME)-config libpng-config)
  149. install: install-static install-shared install-man install-config
  150. # If you installed in $(DESTDIR), test-installed won't work until you
  151. # move the library to its final location. Use test-dd to test it
  152. # before then.
  153. test-dd:
  154. echo
  155. echo Testing installed dynamic shared library in $(DL).
  156. $(CC) -I$(DI) $(CPPFLAGS) \
  157. `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
  158. -L$(DL) -L$(ZLIBLIB) -Wl,-rpath,$(DL) -Wl,-rpath,$(ZLIBLIB) \
  159. -o pngtestd `$(BINPATH)/$(LIBNAME)-config --ldflags`
  160. ./pngtestd pngtest.png
  161. test-installed:
  162. echo
  163. echo Testing installed dynamic shared library.
  164. $(CC) $(CPPFLAGS) \
  165. `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
  166. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) \
  167. -o pngtesti `$(BINPATH)/$(LIBNAME)-config --ldflags`
  168. ./pngtesti pngtest.png
  169. clean:
  170. $(RM_F) *.o libpng.a pngtest pngtesti pngout.png \
  171. libpng-config $(LIBSO) $(LIBSOMAJ)* \
  172. libpng.pc pnglibconf.h
  173. DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
  174. writelock:
  175. chmod a-w *.[ch35] $(DOCS) scripts/*
  176. # DO NOT DELETE THIS LINE -- make depend depends on it.
  177. png.o png.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  178. pngerror.o pngerror.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  179. pngrio.o pngrio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  180. pngwio.o pngwio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  181. pngmem.o pngmem.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  182. pngset.o pngset.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  183. pngget.o pngget.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  184. pngread.o pngread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  185. pngrtran.o pngrtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  186. pngrutil.o pngrutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  187. pngtrans.o pngtrans.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  188. pngwrite.o pngwrite.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  189. pngwtran.o pngwtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  190. pngwutil.o pngwutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  191. pngpread.o pngpread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  192. pngtest.o: png.h pngconf.h pnglibconf.h