Makefile.wat
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:6k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. # WMAKE makefile for Windows 95 and Windows NT (Intel only)
  2. # using Watcom C/C++ v11.0+, by Paul Kienitz, last revised 26 Apr 98.
  3. # Makes UnZip.exe, fUnZip.exe, and UnZipSFX.exe.
  4. #
  5. # Invoke from UnZip source dir with "WMAKE -F WIN32MAKEFILE.WAT [targets]"
  6. # To build with debug info use "WMAKE DEBUG=1 ..."
  7. # To build with no assembly modules use "WMAKE NOASM=1 ..."
  8. # To support unshrinking and unreducing use "WMAKE LAWSUIT=1 ..."
  9. #
  10. # Other options to be fed to the compiler can be specified in an environment
  11. # variable called LOCAL_UNZIP.
  12. variation = $(%LOCAL_UNZIP)
  13. # Stifle annoying "Delete this file?" questions when errors occur:
  14. .ERASE
  15. .EXTENSIONS:
  16. .EXTENSIONS: .exe .obj .obx .c .h .asm
  17. # We maintain multiple sets of object files in different directories so that
  18. # we can compile msdos, dos/4gw or pmode/w, and win32 versions of UnZip without
  19. # their object files interacting.  The following var must be a directory name
  20. # ending with a backslash.  All object file names must include this macro
  21. # at the beginning, for example "$(O)foo.obj".
  22. !ifdef DEBUG
  23. O = od32w  # comment here so backslash won't continue the line
  24. !else
  25. O = ob32w  # likewise
  26. !endif
  27. !ifdef LAWSUIT
  28. cvars = $+$(cvars)$- -DUSE_SMITH_CODE -DUSE_UNSHRINK
  29. avars = $+$(avars)$- -DUSE_SMITH_CODE -DUSE_UNSHRINK
  30. # "$+$(foo)$-" means expand foo as it has been defined up to now; normally,
  31. # this Make defers inner expansion until the outer macro is expanded.
  32. !endif
  33. # The assembly hot-spot code in crc_i386.asm is optional.  This section
  34. # controls its usage.
  35. !ifdef NOASM
  36. crcob = $(O)crc32.obj
  37. !else   # !NOASM
  38. cvars = $+$(cvars)$- -DASM_CRC
  39. crcob = $(O)crc_i386.obj
  40. !endif
  41. # Our object files.  OBJS is for UnZip, OBJX for UnZipSFX, OBJF for fUnZip:
  42. OBJS1 = $(O)unzip.obj $(crcob) $(O)crctab.obj $(O)crypt.obj $(O)envargs.obj
  43. OBJS2 = $(O)explode.obj $(O)extract.obj $(O)fileio.obj $(O)globals.obj
  44. OBJS3 = $(O)inflate.obj $(O)list.obj $(O)match.obj $(O)process.obj
  45. OBJS4 = $(O)ttyio.obj $(O)unreduce.obj $(O)unshrink.obj $(O)zipinfo.obj
  46. OBJS  = $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(O)win32.obj $(O)nt.obj
  47. OBJX1 = $(O)unzip.obx $(crcob) $(O)crctab.obx $(O)crypt.obx $(O)extract.obx
  48. OBJX2 = $(O)fileio.obx $(O)globals.obx $(O)inflate.obx $(O)match.obx
  49. OBJX3 = $(O)process.obx $(O)ttyio.obx
  50. OBJX  = $(OBJX1) $(OBJX2) $(OBJX3) $(O)win32.obx $(O)nt.obx
  51. OBJF1 = $(O)funzip.obj $(crcob) $(O)cryptf.obj $(O)globalsf.obj
  52. OBJF  = $(OBJF1) $(O)inflatef.obj $(O)ttyiof.obj $(O)win32f.obj
  53. UNZIP_H = unzip.h unzpriv.h globals.h win32w32cfg.h
  54. # Now we have to pick out the proper compiler and options for it.
  55. cc     = wcc386
  56. link   = wlink
  57. asm    = wasm
  58. # Use Pentium Pro timings, register args, static strings in code, high strictness:
  59. cflags = -bt=NT -6r -zt -zq -wx
  60. aflags = -bt=NT -mf -3 -zq
  61. lflags = sys NT
  62. cvars  = $+$(cvars)$- -DWIN32 $(variation)
  63. avars  = $+$(avars)$- $(variation)
  64. # Specify optimizations, or a nonoptimized debugging version:
  65. !ifdef DEBUG
  66. cdebug = -od -d2
  67. cdebux = -od -d2
  68. ldebug = d w all op symf
  69. !else
  70. cdebug = -s -obhikl+rt -oe=100 -zp8
  71. cdebux = -s -obhiklrs
  72. # -oa helps slightly but might be dangerous.
  73. ldebug = op el
  74. !endif
  75. # How to compile sources:
  76. .c.obx:
  77. $(cc) $(cdebux) $(cflags) $(cvars) -DSFX $[@ -fo=$@
  78. .c.obj:
  79. $(cc) $(cdebug) $(cflags) $(cvars) $[@ -fo=$@
  80. # Here we go!  By default, make all targets:
  81. all: UnZip.exe fUnZip.exe UnZipSFX.exe
  82. # Convenient shorthand options for single targets:
  83. u:   UnZip.exe     .SYMBOLIC
  84. f:   fUnZip.exe    .SYMBOLIC
  85. x:   UnZipSFX.exe  .SYMBOLIC
  86. UnZip.exe: $(OBJS)
  87. $(link) $(lflags) $(ldebug) name $@ file {$(OBJS)}
  88. UnZipSFX.exe: $(OBJX)
  89. $(link) $(lflags) $(ldebug) name $@ file {$(OBJX)}
  90. fUnZip.exe: $(OBJF)
  91. $(link) $(lflags) $(ldebug) name $@ file {$(OBJF)}
  92. # Source dependencies:
  93. #       generic (UnZip, fUnZip):
  94. $(O)crc32.obj:    crc32.c $(UNZIP_H) zip.h
  95. $(O)crctab.obj:   crctab.c $(UNZIP_H) zip.h
  96. $(O)crypt.obj:    crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
  97. $(O)envargs.obj:  envargs.c $(UNZIP_H)
  98. $(O)explode.obj:  explode.c $(UNZIP_H)
  99. $(O)extract.obj:  extract.c $(UNZIP_H) crypt.h
  100. $(O)fileio.obj:   fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h
  101. $(O)funzip.obj:   funzip.c $(UNZIP_H) crypt.h ttyio.h tables.h
  102. $(O)globals.obj:  globals.c $(UNZIP_H)
  103. $(O)inflate.obj:  inflate.c inflate.h $(UNZIP_H)
  104. $(O)list.obj:     list.c $(UNZIP_H)
  105. $(O)match.obj:    match.c $(UNZIP_H)
  106. $(O)process.obj:  process.c $(UNZIP_H)
  107. $(O)ttyio.obj:    ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
  108. $(O)unreduce.obj: unreduce.c $(UNZIP_H)
  109. $(O)unshrink.obj: unshrink.c $(UNZIP_H)
  110. $(O)unzip.obj:    unzip.c $(UNZIP_H) crypt.h version.h consts.h
  111. $(O)zipinfo.obj:  zipinfo.c $(UNZIP_H)
  112. #       UnZipSFX variants:
  113. $(O)crc32.obx:    crc32.c $(UNZIP_H) zip.h
  114. $(O)crctab.obx:   crctab.c $(UNZIP_H) zip.h
  115. $(O)crypt.obx:    crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
  116. $(O)extract.obx:  extract.c $(UNZIP_H) crypt.h
  117. $(O)fileio.obx:   fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h
  118. $(O)globals.obx:  globals.c $(UNZIP_H)
  119. $(O)inflate.obx:  inflate.c inflate.h $(UNZIP_H)
  120. $(O)match.obx:    match.c $(UNZIP_H)
  121. $(O)process.obx:  process.c $(UNZIP_H)
  122. $(O)ttyio.obx:    ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
  123. $(O)unzip.obx:    unzip.c $(UNZIP_H) crypt.h version.h consts.h
  124. # Special case object files:
  125. $(O)win32.obj:    win32win32.c $(UNZIP_H)
  126. $(cc) $(cdebug) $(cflags) $(cvars) win32win32.c -fo=$@
  127. $(O)win32.obx:    win32win32.c $(UNZIP_H)
  128. $(cc) $(cdebux) $(cflags) $(cvars) -DSFX win32win32.c -fo=$@
  129. $(O)nt.obj:    win32nt.c $(UNZIP_H) win32nt.h
  130. $(cc) $(cdebug) $(cflags) $(cvars) win32nt.c -fo=$@
  131. $(O)nt.obx:    win32nt.c $(UNZIP_H) win32nt.h
  132. $(cc) $(cdebux) $(cflags) $(cvars) -DSFX win32nt.c -fo=$@
  133. $(O)crc_i386.obj: win32crc_i386.asm
  134. $(asm) $(aflags) $(avars) win32crc_i386.asm -fo=$@
  135. # Variant object files for fUnZip:
  136. $(O)cryptf.obj:   crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
  137. $(cc) $(cdebug) $(cflags) $(cvars) -DFUNZIP crypt.c -fo=$@
  138. $(O)globalsf.obj: globals.c $(UNZIP_H)
  139. $(cc) $(cdebug) $(cflags) $(cvars) -DFUNZIP globals.c -fo=$@
  140. $(O)inflatef.obj: inflate.c inflate.h $(UNZIP_H) crypt.h
  141. $(cc) $(cdebug) $(cflags) $(cvars) -DFUNZIP inflate.c -fo=$@
  142. $(O)ttyiof.obj:   ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
  143. $(cc) $(cdebug) $(cflags) $(cvars) -DFUNZIP ttyio.c -fo=$@
  144. $(O)win32f.obj:    win32win32.c $(UNZIP_H)
  145. $(cc) $(cdebux) $(cflags) $(cvars) -DFUNZIP win32win32.c -fo=$@
  146. # Unwanted file removal:
  147. clean:     .SYMBOLIC
  148. del $(O)*.ob?
  149. cleaner:   clean  .SYMBOLIC
  150. del UnZip.exe
  151. del fUnZip.exe
  152. del UnZipSFX.exe