home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / unzip52.zip / win32 / makefile.wat < prev    next >
Makefile  |  1996-04-20  |  6KB  |  179 lines

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