makefile.mingw
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:10k
源码类别:

界面编程

开发平台:

Visual C++

  1. # makefile for mingw on x86
  2. #   Builds both dll (with import lib) and static lib versions
  3. #   of the library, and builds two copies of pngtest: one
  4. #   statically linked and one dynamically linked.
  5. #
  6. # Built from makefile.cygwin
  7. # Copyright (C) 2002, 2006, 2008 Soren Anderson, Charles Wilson,
  8. #    and Glenn Randers-Pehrson, based on makefile for linux-elf w/mmx by:
  9. # Copyright (C) 1998-2000, 2007 Greg Roelofs
  10. # Copyright (C) 1996, 1997 Andreas Dilger
  11. # For conditions of distribution and use, see copyright notice in png.h
  12. # This makefile intends to support building outside the src directory
  13. # if desired. When invoking it, specify an argument to SRCDIR on the
  14. # command line that points to the top of the directory where your source
  15. # is located.
  16. ifdef SRCDIR
  17. VPATH = $(SRCDIR)
  18. else
  19. SRCDIR = .
  20. endif
  21. # Override DESTDIR= on the make install command line to easily support
  22. # installing into a temporary location.  Example:
  23. #
  24. #    make install DESTDIR=/tmp/build/libpng
  25. #
  26. # If you're going to install into a temporary location
  27. # via DESTDIR, $(DESTDIR)$(prefix) must already exist before
  28. # you execute make install.
  29. DESTDIR=
  30. # If you're using a cross-compiler, add the appropriate prefix (e.g.,
  31. # "i386-mingw32msvc-") to the following three commands:
  32. CC=gcc
  33. AR=ar
  34. RANLIB=ranlib
  35. MKDIR_P=/bin/mkdir -pv
  36. # Where "make install" puts libpng*.a, *png*.dll, png.h, and pngconf.h
  37. ifndef prefix
  38. prefix=/usr
  39. $(warning "You haven't specified a 'prefix=' location. Defaulting to '/usr'")
  40. endif
  41. exec_prefix=$(prefix)
  42. # Where the zlib library and include files are located
  43. ZLIBLIB= /usr/lib
  44. ZLIBINC=
  45. ALIGN=
  46. # for i386:
  47. #ALIGN=-malign-loops=2 -malign-functions=2
  48. WARNMORE=-Wwrite-strings -Wpointer-arith -Wshadow 
  49. -Wmissing-declarations -Wtraditional -Wcast-align 
  50. -Wstrict-prototypes -Wmissing-prototypes #-Wconversion
  51. ### if you don't need thread safety, but want the asm accel
  52. #CFLAGS= $(strip $(MINGW_CCFLAGS) -DPNG_THREAD_UNSAFE_OK 
  53. # $(addprefix -I,$(ZLIBINC)) -W -Wall -O $(ALIGN) -funroll-loops 
  54. # -fomit-frame-pointer)  # $(WARNMORE) -g -DPNG_DEBUG=5
  55. ### if you need thread safety and want (minimal) asm accel
  56. #CFLAGS= $(strip $(MINGW_CCFLAGS) $(addprefix -I,$(ZLIBINC)) 
  57. # -W -Wall -O $(ALIGN) -funroll-loops 
  58. # -fomit-frame-pointer)  # $(WARNMORE) -g -DPNG_DEBUG=5
  59. ### Normal (non-asm) compilation
  60. CFLAGS= $(strip $(MINGW_CCFLAGS) $(addprefix -I,$(ZLIBINC)) 
  61.         -W -Wall -O3 $(ALIGN) -funroll-loops -DPNG_NO_MMX_CODE 
  62. -fomit-frame-pointer) # $(WARNMORE) -g -DPNG_DEBUG=5
  63. LIBNAME = libpng12
  64. PNGMAJ = 0
  65. MINGDLL = 12
  66. PNGMIN = 1.2.34
  67. PNGVER = $(PNGMAJ).$(PNGMIN)
  68. SHAREDLIB=libpng$(MINGDLL).dll
  69. STATLIB=libpng.a
  70. IMPLIB=libpng.dll.a
  71. SHAREDDEF=libpng.def
  72. LIBS=$(SHAREDLIB) $(STATLIB)
  73. EXE=.exe
  74. LDFLAGS=$(strip -L. $(MINGW_LDFLAGS) -lpng $(addprefix -L,$(ZLIBLIB)) -lz)
  75. LDSFLAGS=$(strip -shared -L.  $(MINGW_LDFLAGS))
  76. LDEXTRA=-Wl,--out-implib=$(IMPLIB) $(addprefix -L,$(ZLIBLIB)) -lz
  77. INCPATH=$(prefix)/include
  78. LIBPATH=$(exec_prefix)/lib
  79. BINPATH=$(exec_prefix)/bin
  80. MANPATH=$(prefix)/man
  81. MAN3PATH=$(MANPATH)/man3
  82. MAN5PATH=$(MANPATH)/man5
  83. # cosmetic: shortened strings:
  84. S =$(SRCDIR)
  85. D =$(DESTDIR)
  86. DB =$(D)$(BINPATH)
  87. DI =$(D)$(INCPATH)
  88. DL =$(D)$(LIBPATH)
  89. OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o 
  90. pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o 
  91. pngwtran.o pngmem.o pngerror.o pngpread.o
  92. OBJSDLL = $(OBJS:.o=.pic.o)
  93. .SUFFIXES: .c .o .pic.o
  94. %.o : %.c
  95. $(CC) -c $(CFLAGS) -o $@ $<
  96. %.pic.o : CFLAGS += -DPNG_BUILD_DLL
  97. %.pic.o : %.c
  98. $(CC) -c $(CFLAGS) -o $@ $<
  99. all: all-static all-shared libpng.pc libpng-config libpng.pc libpng-config
  100. # Make this to verify that "make [...] install" will do what you want.
  101. buildsetup-tell:
  102. @echo  VPATH is set to: "$(VPATH)"
  103. @echo  prefix is set to: "$(prefix)"
  104. @echo -e INCPATH,LIBPATH, etc. are set to:'n' 
  105.  $(addprefix $(D),$(INCPATH)'n' $(LIBPATH)'n' $(BINPATH)'n' 
  106.    $(MANPATH)'n' $(MAN3PATH)'n' $(MAN5PATH)'n')'n'
  107. libpng.pc: scripts/libpng.pc.in
  108. @echo -e Making pkg-config file for this libpng installation..'n' 
  109.            using PREFIX="$(prefix)"'n'
  110. cat scripts/libpng.pc.in | sed -e s!@prefix@!$(prefix)! 
  111. -e s!@exec_prefix@!$(exec_prefix)! 
  112. -e s!@libdir@!$(LIBPATH)! 
  113. -e s!@includedir@!$(INCPATH)! 
  114. -e s!@includedir@!$(INCPATH)! 
  115. -e s!-lpng12!-lpng12 -lz -lm! > libpng.pc
  116. libpng-config: scripts/libpng-config-head.in scripts/libpng-config-body.in
  117. @echo -e Making $(LIBNAME) libpng-config file for this libpng 
  118.  installation..'n' using PREFIX="$(prefix)"'n'
  119. ( cat $(S)/scripts/libpng-config-head.in; 
  120. echo prefix="$(prefix)"; 
  121. echo I_opts="-I$(INCPATH)/$(LIBNAME)"; 
  122. echo L_opts="-L$(LIBPATH)"; 
  123. echo libs="-lpng$(MINGDLL) -lz"; 
  124. cat $(S)/scripts/libpng-config-body.in ) > libpng-config
  125. chmod +x libpng-config
  126. static: all-static
  127. shared: all-shared
  128. all-static: $(STATLIB) pngtest-stat$(EXE)
  129. all-shared: $(SHAREDLIB) pngtest$(EXE)
  130. $(STATLIB): $(OBJS)
  131. $(AR) rc $@ $(OBJS)
  132. $(RANLIB) $@
  133. $(SHAREDDEF): scripts/pngw32.def
  134. cat $< | sed -e '1{G;s/^(.*)(n)/EXPORTS/;};2,/^EXPORTS/d' | 
  135. sed -e 's/([^;]*);/;/' > $@
  136. $(SHAREDLIB): $(OBJSDLL) $(SHAREDDEF)
  137. $(CC) $(LDSFLAGS) -o $@ $(OBJSDLL) -L. $(LDEXTRA)
  138. pngtest$(EXE): pngtest.pic.o $(SHAREDLIB)
  139. $(CC) $(CFLAGS) $< $(LDFLAGS) -o $@
  140. pngtest-stat$(EXE): pngtest.o $(STATLIB)
  141. $(CC) -static $(CFLAGS) $< $(LDFLAGS) -o $@
  142. test: test-static test-shared
  143. test-static: pngtest-stat$(EXE)
  144. ./pngtest-stat $(S)/pngtest.png
  145. test-shared: pngtest$(EXE)
  146. ./pngtest $(S)/pngtest.png
  147. install-static: $(STATLIB) install-headers install-man
  148. -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
  149. install -m 644 $(STATLIB) $(DL)/$(LIBNAME).a
  150. -@rm -f $(DL)/$(STATLIB)
  151. (cd $(DL); ln -sf $(LIBNAME).a $(STATLIB))
  152. install-shared: $(SHAREDLIB) libpng.pc libpng-config install-headers install-man
  153. -@if [ ! -d $(DL) ]; then $(MKDIR_P) $(DL); fi
  154. -@if [ ! -d $(DB) ]; then $(MKDIR_P) $(DB); fi
  155. -@if [ ! -d $(DL)/pkgconfig ]; then $(MKDIR_P) $(DL)/pkgconfig; fi
  156. -@/bin/rm -f $(DL)/pkgconfig/$(LIBNAME).pc
  157. -@/bin/rm -f $(DL)/pkgconfig/libpng.pc
  158. install -m 644 $(IMPLIB) $(DL)/$(LIBNAME).dll.a
  159. -@rm -f $(DL)/$(IMPLIB)
  160. (cd $(DL); ln -sf $(LIBNAME).dll.a $(IMPLIB))
  161. install -s -m 755 $(SHAREDLIB) $(DB)
  162. install -m 644 libpng.pc $(DL)/pkgconfig/$(LIBNAME).pc
  163. (cd $(DL)/pkgconfig; ln -sf $(LIBNAME).pc libpng.pc)
  164. install-headers:
  165. -@if [ ! -d $(DI) ]; then $(MKDIR_P) $(DI); fi
  166. -@if [ ! -d $(DI)/$(LIBNAME) ]; then $(MKDIR_P) $(DI)/$(LIBNAME); fi
  167. -@rm -f $(DI)/png.h
  168. -@rm -f $(DI)/pngconf.h
  169. install -m 644 $(S)/png.h $(S)/pngconf.h $(DI)/$(LIBNAME)
  170. -@rm -f $(DI)/libpng
  171. (cd $(DI); ln -sf $(LIBNAME) libpng; ln -sf $(LIBNAME)/* .)
  172. install-man:
  173. -@if [ ! -d $(D)$(MAN3PATH) ]; then $(MKDIR_P) $(D)$(MAN3PATH); fi
  174. -@if [ ! -d $(D)$(MAN5PATH) ]; then $(MKDIR_P) $(D)$(MAN5PATH); fi
  175. install -m 644 $(S)/libpngpf.3 $(S)/libpng.3 $(D)$(MAN3PATH)
  176. install -m 644 $(S)/png.5 $(D)$(MAN5PATH)
  177. install-config: libpng-config
  178. -@if [ ! -d $(DB) ]; then $(MKDIR_P) $(DB); fi
  179. -@/bin/rm -f $(DB)/libpng-config
  180. -@/bin/rm -f $(DB)/$(LIBNAME)-config
  181. cp libpng-config $(DB)/$(LIBNAME)-config
  182. chmod 755 $(DB)/$(LIBNAME)-config
  183. (cd $(DB); ln -sf $(LIBNAME)-config libpng-config)
  184. # Run this to verify that a future `configure' run will pick up the settings
  185. # you want.
  186. test-config-install: SHELL=/bin/bash
  187. test-config-install: $(DB)/libpng-config
  188. @echo -e Testing libpng-config functions...'n'
  189. @ for TYRA in LDFLAGS CPPFLAGS CFLAGS LIBS VERSION; 
  190.    do 
  191.     printf "(%d)t %10s =%sn" $$(($$gytiu + 1)) $$TYRA 
  192.     "$$($(DB)/libpng-config `echo --$$TYRA |tr '[:upper:]' '[:lower:]'`)"; 
  193.     gytiu=$$(( $$gytiu + 1 )); 
  194.    done
  195. install: install-static install-shared install-man install-config
  196. # If you installed in $(DESTDIR), test-installed won't work until you
  197. # move the library to its final location.  Use test-dd to test it
  198. # before then.
  199. test-dd:
  200. echo
  201. echo Testing installed dynamic shared library in $(DL).
  202. $(CC) -I$(DI) $(CFLAGS) 
  203.    `$(BINPATH)/libpng12-config --cflags` pngtest.c 
  204.    -L$(DL) -L$(ZLIBLIB) 
  205.    -o pngtestd `$(BINPATH)/libpng12-config --ldflags`
  206. ./pngtestd pngtest.png
  207. test-installed:
  208. $(CC) $(CFLAGS) 
  209.    `$(BINPATH)/libpng12-config --cflags` pngtest.c 
  210.    -L$(ZLIBLIB) 
  211.    -o pngtesti$(EXE) `$(BINPATH)/libpng12-config --ldflags`
  212. ./pngtesti$(EXE) pngtest.png
  213. clean:
  214. /bin/rm -f *.pic.o *.o $(STATLIB) $(IMPLIB) $(SHAREDLIB) 
  215.    pngtest-stat$(EXE) pngtest$(EXE) pngout.png $(SHAREDDEF) 
  216.    libpng-config libpng.pc pngtesti$(EXE)
  217. DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
  218. writelock:
  219. chmod a-w *.[ch35] $(DOCS) scripts/*
  220. .PHONY: buildsetup-tell libpng.pc libpng-config test-config-install clean
  221. # DO NOT DELETE THIS LINE -- make depend depends on it.
  222. png.o png.pic.o: png.h pngconf.h png.c
  223. pngerror.o pngerror.pic.o: png.h pngconf.h pngerror.c
  224. pngrio.o pngrio.pic.o: png.h pngconf.h pngrio.c
  225. pngwio.o pngwio.pic.o: png.h pngconf.h pngwio.c
  226. pngmem.o pngmem.pic.o: png.h pngconf.h pngmem.c
  227. pngset.o pngset.pic.o: png.h pngconf.h pngset.c
  228. pngget.o pngget.pic.o: png.h pngconf.h pngget.c
  229. pngread.o pngread.pic.o: png.h pngconf.h pngread.c
  230. pngrtran.o pngrtran.pic.o: png.h pngconf.h pngrtran.c
  231. pngrutil.o pngrutil.pic.o: png.h pngconf.h pngrutil.c
  232. pngtrans.o pngtrans.pic.o: png.h pngconf.h pngtrans.c
  233. pngwrite.o pngwrite.pic.o: png.h pngconf.h pngwrite.c
  234. pngwtran.o pngwtran.pic.o: png.h pngconf.h pngwtran.c
  235. pngwutil.o pngwutil.pic.o: png.h pngconf.h pngwutil.c
  236. pngpread.o pngpread.pic.o: png.h pngconf.h pngpread.c
  237. pngtest.o pngtest.pic.o: png.h pngconf.h pngtest.c