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

压缩解压

开发平台:

MultiPlatform

  1. # WMAKE makefile for 16 bit MSDOS or 32 bit DOS extender (PMODE/W or DOS/4GW)
  2. # using Watcom C/C++ v11.0+, by Paul Kienitz, last revised 29 Sep 97.  Makes
  3. # UnZip.exe, fUnZip.exe, and UnZipSFX.exe.
  4. #
  5. # Invoke from UnZip source dir with "WMAKE -F MSDOSMAKEFILE.WAT [targets]".
  6. # To make the PMODE/W version use "WMAKE PM=1 ..."
  7. # To make the DOS/4GW version use "WMAKE GW=1 ..." (overrides PM=1)
  8. #   Note: specifying PM or GW without NOASM requires that the win32 source
  9. #   directory be present, so it can access the 32 bit assembly source.
  10. #   PMODE/W is recommended over DOS/4GW for best performance.
  11. # To build with debug info use "WMAKE DEBUG=1 ..."
  12. # To build with no assembly modules use "WMAKE NOASM=1 ..."
  13. # To support unshrinking and unreducing use "WMAKE LAWSUIT=1 ..."
  14. #
  15. # Other options to be fed to the compiler can be specified in an environment
  16. # variable called LOCAL_UNZIP.
  17. variation = $(%LOCAL_UNZIP)
  18. # Stifle annoying "Delete this file?" questions when errors occur:
  19. .ERASE
  20. .EXTENSIONS:
  21. .EXTENSIONS: .exe .obj .obx .c .h .asm
  22. # We maintain multiple sets of object files in different directories so that
  23. # we can compile msdos, dos/4gw, and win32 versions of UnZip without their
  24. # object files interacting.  The following var must be a directory name
  25. # ending with a backslash.  All object file names must include this macro
  26. # at the beginning, for example "$(O)foo.obj".
  27. !ifdef GW
  28. PM = 1      # both protected mode formats use the same object files
  29. !endif
  30. !ifdef DEBUG
  31. !  ifdef PM
  32. O = od32d  # comment here so backslash won't continue the line
  33. !  else
  34. O = od16d  # ditto
  35. !  endif
  36. !else
  37. !  ifdef PM
  38. O = ob32d  # ditto
  39. !  else
  40. O = ob16d  # ditto
  41. !  endif
  42. !endif
  43. !ifdef LAWSUIT
  44. cvars = $+$(cvars)$- -DUSE_SMITH_CODE -DUSE_UNSHRINK
  45. avars = $+$(avars)$- -DUSE_SMITH_CODE -DUSE_UNSHRINK
  46. # "$+$(foo)$-" means expand foo as it has been defined up to now; normally,
  47. # this Make defers inner expansion until the outer macro is expanded.
  48. !endif
  49. # The assembly hot-spot code in crc_i[3]86.asm is optional.  This section
  50. # controls its usage.
  51. !ifdef NOASM
  52. crcob = $(O)crc32.obj
  53. crcox = $(O)crc32.obx
  54. !else   # !NOASM
  55. cvars = $+$(cvars)$- -DASM_CRC
  56. !  ifdef PM
  57. crcob = $(O)crc_i386.obj
  58. crcox = $(O)crc_i386.obx
  59. crc_s = win32crc_i386.asm   # requires that the win32 directory be present
  60. !  else
  61. crcob = $(O)crc_i86.obj
  62. crcox = $(O)crc_i86.obx
  63. crc_s = msdoscrc_i86.asm
  64. !  endif
  65. !endif
  66. # Our object files: OBJA/OBJB is for UnZip, OBJX for UnZipSFX, OBJF for fUnZip:
  67. OBJA1 = $(O)unzip.obj $(crcob) $(O)crctab.obj $(O)crypt.obj $(O)envargs.obj
  68. OBJA  = $(OBJA1) $(O)explode.obj $(O)extract.obj $(O)fileio.obj $(O)globals.obj
  69. OBJB2 = $(O)inflate.obj $(O)list.obj $(O)match.obj $(O)process.obj $(O)ttyio.obj
  70. OBJB  = $(OBJB2) $(O)unreduce.obj $(O)unshrink.obj $(O)zipinfo.obj $(O)msdos.obj
  71. OBJX2 = $(O)unzip.obx $(crcox) $(O)crctab.obx $(O)crypt.obx $(O)extract.obx
  72. OBJX1 = $(OBJX2) $(O)fileio.obx $(O)globals.obx $(O)inflate.obx $(O)match.obx
  73. OBJX  = $(OBJX1) $(O)process.obx $(O)ttyio.obx $(O)msdos.obx
  74. OBJF1  = $(O)funzip.obj $(crcox) $(O)cryptf.obj $(O)globalsf.obj
  75. OBJF  = $(OBJF1) $(O)inflatef.obj $(O)ttyio.obx
  76. # fUnZip uses $(crcox) and $(O)ttyio.obx because they're small-model.
  77. # Common header files included by all C sources:
  78. UNZIP_H = unzip.h unzpriv.h globals.h msdosdoscfg.h
  79. # Now we have to pick out the proper compiler and options for it.  This gets
  80. # pretty complicated with the PM, GW, DEBUG, and NOASM options...
  81. link   = wlink
  82. asm    = wasm
  83. !ifdef PM
  84. cc     = wcc386
  85. # Use Pentium Pro timings, flat memory, static strings in code, max strictness:
  86. cflags = -bt=DOS -mf -6r -zt -zq -wx
  87. aflags = -bt=DOS -mf -3 -zq
  88. cflagx = $(cflags)
  89. aflagx = $(aflags)
  90. !  ifdef GW
  91. lflags = sys DOS4G
  92. !  else
  93. # THIS REQUIRES THAT PMODEW.EXE BE FINDABLE IN THE COMMAND PATH.
  94. # It does NOT require you to add a pmodew entry to wlink.lnk or wlsystem.lnk.
  95. defaultlibs = libpath %WATCOM%lib386 libpath %WATCOM%lib386dos
  96. lflags = format os2 le op osname='PMODE/W' op stub=pmodew.exe $(defaultlibs)
  97. !  endif
  98. !else   # plain 16-bit DOS:
  99. cc     = wcc
  100. # Use plain 8086 code, medium memory, static strings in code, max strictness:
  101. cflags = -bt=DOS -mm -0 -zt -zq -wx
  102. aflags = -bt=DOS -mm -0 -zq
  103. # for UnZipSFX and fUnZip, use the small memory model:
  104. cflagx = -bt=DOS -ms -0 -zt -zq -wx
  105. aflagx = -bt=DOS -ms -0 -zq
  106. lflags = sys DOS
  107. !endif  # !PM
  108. cvars  = $+$(cvars)$- -DMSDOS $(variation)
  109. avars  = $+$(avars)$- $(variation)
  110. # Specify optimizations, or a nonoptimized debugging version:
  111. !ifdef DEBUG
  112. cdebug = -od -d2
  113. cdebux = -od -d2
  114. ldebug = d w all op symf
  115. !else
  116. !  ifdef PM
  117. cdebug = -s -obhikl+rt -oe=100 -zp8
  118. # -oa helps slightly but might be dangerous.
  119. !  else
  120. cdebug = -s -oehiklrt
  121. !  endif
  122. cdebux = -s -obhiklrs
  123. ldebug = op el
  124. !endif
  125. # How to compile sources:
  126. .c.obx:
  127. $(cc) $(cdebux) $(cflagx) $(cvars) -DSFX $[@ -fo=$@
  128. .c.obj:
  129. $(cc) $(cdebug) $(cflags) $(cvars) $[@ -fo=$@
  130. # Here we go!  By default, make all targets, except no UnZipSFX for PMODE:
  131. !ifdef PM
  132. all: UnZip.exe fUnZip.exe
  133. !else
  134. all: UnZip.exe fUnZip.exe UnZipSFX.exe
  135. !endif
  136. # Convenient shorthand options for single targets:
  137. u:   UnZip.exe    .SYMBOLIC
  138. f:   fUnZip.exe   .SYMBOLIC
  139. x:   UnZipSFX.exe .SYMBOLIC
  140. UnZip.exe: $(OBJA) $(OBJB)
  141. set WLK_VA=file {$(OBJA)}
  142. set WLK_VB=file {$(OBJB)}
  143. $(link) $(lflags) $(ldebug) name $@ @WLK_VA @WLK_VB
  144. set WLK_VA=
  145. set WLK_VB=
  146. # We use WLK_VA/WLK_VB to keep the size of each command under 256 chars.
  147. UnZipSFX.exe: $(OBJX)
  148. set WLK_VX=file {$(OBJX)}
  149. $(link) $(lflags) $(ldebug) name $@ @WLK_VX
  150. set WLK_VX=
  151. fUnZip.exe: $(OBJF)
  152. set WLK_VF=file {$(OBJF)}
  153. $(link) $(lflags) $(ldebug) name $@ @WLK_VF
  154. set WLK_VF=
  155. # Source dependencies:
  156. #       for UnZip ...
  157. $(O)crc32.obj:    crc32.c $(UNZIP_H) zip.h
  158. $(O)crctab.obj:   crctab.c $(UNZIP_H) zip.h
  159. $(O)crypt.obj:    crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
  160. $(O)envargs.obj:  envargs.c $(UNZIP_H)
  161. $(O)explode.obj:  explode.c $(UNZIP_H)
  162. $(O)extract.obj:  extract.c $(UNZIP_H) crypt.h
  163. $(O)fileio.obj:   fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h
  164. $(O)globals.obj:  globals.c $(UNZIP_H)
  165. $(O)inflate.obj:  inflate.c inflate.h $(UNZIP_H)
  166. $(O)list.obj:     list.c $(UNZIP_H)
  167. $(O)match.obj:    match.c $(UNZIP_H)
  168. $(O)process.obj:  process.c $(UNZIP_H)
  169. $(O)ttyio.obj:    ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
  170. $(O)unreduce.obj: unreduce.c $(UNZIP_H)
  171. $(O)unshrink.obj: unshrink.c $(UNZIP_H)
  172. $(O)unzip.obj:    unzip.c $(UNZIP_H) crypt.h version.h consts.h
  173. $(O)zipinfo.obj:  zipinfo.c $(UNZIP_H)
  174. #       for UnZipSFX ...
  175. $(O)crc32.obx:    crc32.c $(UNZIP_H) zip.h
  176. $(O)crctab.obx:   crctab.c $(UNZIP_H) zip.h
  177. $(O)crypt.obx:    crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
  178. $(O)extract.obx:  extract.c $(UNZIP_H) crypt.h
  179. $(O)fileio.obx:   fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h
  180. $(O)globals.obx:  globals.c $(UNZIP_H)
  181. $(O)inflate.obx:  inflate.c inflate.h $(UNZIP_H)
  182. $(O)match.obx:    match.c $(UNZIP_H)
  183. $(O)process.obx:  process.c $(UNZIP_H)
  184. $(O)ttyio.obx:    ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
  185. $(O)unzip.obx:    unzip.c $(UNZIP_H) crypt.h version.h consts.h
  186. # Special case object files:
  187. $(O)msdos.obj:    msdosmsdos.c $(UNZIP_H)
  188. $(cc) $(cdebug) $(cflags) $(cvars) msdosmsdos.c -fo=$@
  189. $(O)msdos.obx:    msdosmsdos.c $(UNZIP_H)
  190. $(cc) $(cdebux) $(cflagx) $(cvars) -DSFX msdosmsdos.c -fo=$@
  191. !ifndef NOASM
  192. $(crcob):         $(crc_s)
  193. $(asm) $(aflags) $(avars) $(crc_s) -fo=$@
  194. $(crcox):         $(crc_s)
  195. $(asm) $(aflagx) $(avars) $(crc_s) -fo=$@
  196. !endif
  197. # Variant object files for fUnZip, using $(cflagx):
  198. $(O)funzip.obj:   funzip.c $(UNZIP_H) crypt.h ttyio.h tables.h
  199. $(cc) $(cdebux) $(cflagx) $(cvars) funzip.c -fo=$@
  200. $(O)cryptf.obj:   crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
  201. $(cc) $(cdebux) $(cflagx) $(cvars) -DFUNZIP crypt.c -fo=$@
  202. $(O)globalsf.obj: globals.c $(UNZIP_H)
  203. $(cc) $(cdebux) $(cflagx) $(cvars) -DFUNZIP globals.c -fo=$@
  204. $(O)inflatef.obj: inflate.c inflate.h $(UNZIP_H) crypt.h
  205. $(cc) $(cdebux) $(cflagx) $(cvars) -DFUNZIP inflate.c -fo=$@
  206. $(O)ttyiof.obj:   ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
  207. $(cc) $(cdebux) $(cflagx) $(cvars) -DFUNZIP ttyio.c -fo=$@
  208. # Unwanted file removal:
  209. clean:     .SYMBOLIC
  210. !ifdef PM
  211. del ob32d*.ob?
  212. !else
  213. del ob16d*.ob?
  214. !endif
  215. cleaner:   clean  .SYMBOLIC
  216. del UnZip.exe
  217. del fUnZip.exe
  218. del UnZipSFX.exe