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

界面编程

开发平台:

Visual C++

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