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

界面编程

开发平台:

Visual C++

  1. # Sample makefile for rpng-win / rpng2-win / wpng using MSVC and NMAKE.
  2. # Greg Roelofs
  3. # Last modified:  2 June 2007
  4. #
  5. # The programs built by this makefile are described in the book,
  6. # "PNG:  The Definitive Guide," by Greg Roelofs (O'Reilly and
  7. # Associates, 1999).  Go buy a copy, eh?  Well, OK, it's not
  8. # generally for sale anymore, but it's the thought that counts,
  9. # right?  (Hint:  http://www.libpng.org/pub/png/book/ )
  10. #
  11. # Invoke this makefile from a DOS prompt window via:
  12. #
  13. # %devstudio%vcbinvcvars32.bat
  14. # nmake -nologo -f Makefile.w32
  15. #
  16. # where %devstudio% is the installation directory for MSVC / DevStudio.  If
  17. # you get "environment out of space" errors, create a desktop shortcut with
  18. # "c:windowscommand.com /e:4096" as the program command line and set the
  19. # working directory to this directory.  Then double-click to open the new
  20. # DOS-prompt window with a bigger environment and retry the commands above.
  21. # This makefile assumes libpng and zlib have already been built or downloaded
  22. # and are in subdirectories at the same level as the current subdirectory
  23. # (as indicated by the PNGPATH and ZPATH macros below).  Edit as appropriate.
  24. #
  25. # Note that the names of the dynamic and static libpng and zlib libraries
  26. # used below may change in later releases of the libraries.  This makefile
  27. # builds statically linked executables, but that can be changed by uncom-
  28. # menting the appropriate PNGLIB and ZLIB lines.
  29. !include <ntwin32.mak>
  30. # macros --------------------------------------------------------------------
  31. PNGPATH = ../libpng
  32. PNGINC = -I$(PNGPATH)
  33. #PNGLIB = $(PNGPATH)/pngdll.lib
  34. PNGLIB = $(PNGPATH)/libpng.lib
  35. ZPATH = ../zlib
  36. ZINC = -I$(ZPATH)
  37. #ZLIB = $(ZPATH)/zlibdll.lib
  38. ZLIB = $(ZPATH)/zlibstat.lib
  39. WINLIBS = -defaultlib:user32.lib gdi32.lib
  40. # ["real" apps may also need comctl32.lib, comdlg32.lib, winmm.lib, etc.]
  41. INCS = $(PNGINC) $(ZINC)
  42. RLIBS = $(PNGLIB) $(ZLIB) $(WINLIBS)
  43. WLIBS = $(PNGLIB) $(ZLIB)
  44. CC = cl
  45. LD = link
  46. RM = del
  47. CFLAGS = -nologo -O -W3 $(INCS) $(cvars)
  48. # [note that -W3 is an MSVC-specific compilation flag ("all warnings on")]
  49. # [see %devstudio%vcincludewin32.mak for cvars macro definition]
  50. O = .obj
  51. E = .exe
  52. RLDFLAGS = -nologo -subsystem:windows
  53. WLDFLAGS = -nologo
  54. RPNG  = rpng-win
  55. RPNG2 = rpng2-win
  56. WPNG  = wpng
  57. ROBJS  = $(RPNG)$(O) readpng$(O)
  58. ROBJS2 = $(RPNG2)$(O) readpng2$(O)
  59. WOBJS  = $(WPNG)$(O) writepng$(O)
  60. EXES = $(RPNG)$(E) $(RPNG2)$(E) $(WPNG)$(E)
  61. # implicit make rules -------------------------------------------------------
  62. .c$(O):
  63. $(CC) -c $(CFLAGS) $<
  64. # dependencies --------------------------------------------------------------
  65. all:  $(EXES)
  66. $(RPNG)$(E): $(ROBJS)
  67. $(LD) $(RLDFLAGS) -out:$@ $(ROBJS) $(RLIBS)
  68. $(RPNG2)$(E): $(ROBJS2)
  69. $(LD) $(RLDFLAGS) -out:$@ $(ROBJS2) $(RLIBS)
  70. $(WPNG)$(E): $(WOBJS)
  71. $(LD) $(WLDFLAGS) -out:$@ $(WOBJS) $(WLIBS)
  72. $(RPNG)$(O): $(RPNG).c readpng.h
  73. $(RPNG2)$(O): $(RPNG2).c readpng2.h
  74. $(WPNG)$(O): $(WPNG).c writepng.h
  75. readpng$(O): readpng.c readpng.h
  76. readpng2$(O): readpng2.c readpng2.h
  77. writepng$(O): writepng.c writepng.h
  78. # maintenance ---------------------------------------------------------------
  79. clean:
  80. # ideally we could just do this:
  81. # $(RM) $(EXES) $(ROBJS) $(ROBJS2) $(WOBJS)
  82. # ...but the Windows "DEL" command is none too bright, so:
  83. $(RM) r*$(E)
  84. $(RM) w*$(E)
  85. $(RM) r*$(O)
  86. $(RM) w*$(O)