makefile.hpgcc 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. # makefile for libpng on HP-UX using GCC with the HP ANSI/C linker.
  2. # Copyright (C) 2002, 2006-2008, 2010-2011 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 = libpng15
  12. PNGMAJ = 15
  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. CFLAGS=-I$(ZLIBINC) -W -Wall -O3 -funroll-loops -DPNG_NO_MMX_CODE \
  47. $(ALIGN) # $(WARNMORE) -g -DPNG_DEBUG=5
  48. #LDFLAGS=-L. -Wl,-rpath,. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) -lpng15 -lz -lm
  49. LDFLAGS=-L. -L$(ZLIBLIB) -lpng15 -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.pic.o:
  73. $(CC) -c $(CFLAGS) -fPIC -o $@ $*.c
  74. all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
  75. libpng.a: $(OBJS)
  76. $(AR_RC) $@ $(OBJS)
  77. $(RANLIB) $@
  78. libpng.pc:
  79. cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! \
  80. -e s!@exec_prefix@!$(exec_prefix)! \
  81. -e s!@libdir@!$(LIBPATH)! \
  82. -e s!@includedir@!$(INCPATH)! \
  83. -e s!-lpng15!-lpng15\ -lz\ -lm! > libpng.pc
  84. libpng-config:
  85. ( cat scripts/libpng-config-head.in; \
  86. echo prefix=\"$(prefix)\"; \
  87. echo I_opts=\"-I$(INCPATH)/$(LIBNAME)\"; \
  88. echo libs=\"-lpng15 -lz -lm\"; \
  89. cat scripts/libpng-config-body.in ) > libpng-config
  90. chmod +x libpng-config
  91. $(LIBSO): $(LIBSOMAJ)
  92. $(LN_SF) $(LIBSOMAJ) $(LIBSO)
  93. $(LIBSOMAJ): $(OBJSDLL)
  94. $(LD) -b +s \
  95. +h $(LIBSOMAJ) -o $(LIBSOMAJ) $(OBJSDLL)
  96. pngtest: pngtest.o $(LIBSO)
  97. $(CC) -o pngtest $(CFLAGS) pngtest.o $(LDFLAGS)
  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) -I$(ZLIBINC) \
  155. `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
  156. -L$(DL) -L$(ZLIBLIB) -Wl,-rpath,$(DL) -Wl,-rpath,$(ZLIBLIB) \
  157. -o pngtestd `$(BINPATH)/$(LIBNAME)-config --ldflags`
  158. ./pngtestd pngtest.png
  159. test-installed:
  160. echo
  161. echo Testing installed dynamic shared library.
  162. $(CC) -I$(ZLIBINC) \
  163. `$(BINPATH)/$(LIBNAME)-config --cflags` pngtest.c \
  164. -L$(ZLIBLIB) -Wl,-rpath,$(ZLIBLIB) \
  165. -o pngtesti `$(BINPATH)/$(LIBNAME)-config --ldflags`
  166. ./pngtesti pngtest.png
  167. clean:
  168. $(RM_F) *.o libpng.a pngtest pngtesti pngout.png \
  169. libpng-config $(LIBSO) $(LIBSOMAJ)* \
  170. libpng.pc pnglibconf.h
  171. DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
  172. writelock:
  173. chmod a-w *.[ch35] $(DOCS) scripts/*
  174. # DO NOT DELETE THIS LINE -- make depend depends on it.
  175. png.o png.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  176. pngerror.o pngerror.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  177. pngrio.o pngrio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  178. pngwio.o pngwio.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  179. pngmem.o pngmem.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  180. pngset.o pngset.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  181. pngget.o pngget.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  182. pngread.o pngread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  183. pngrtran.o pngrtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  184. pngrutil.o pngrutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  185. pngtrans.o pngtrans.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  186. pngwrite.o pngwrite.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  187. pngwtran.o pngwtran.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  188. pngwutil.o pngwutil.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  189. pngpread.o pngpread.pic.o: png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
  190. pngtest.o: png.h pngconf.h pnglibconf.h