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

压缩解压

开发平台:

MultiPlatform

  1. #------------------------------------------------------------------------------
  2. # Makefile for UnZip 5.2 and later                      Greg Roelofs and others
  3. # Version:  Microsoft C (5.x and later)                               31 Mar 96
  4. #------------------------------------------------------------------------------
  5. # Users of MSC 6/7 and NMAKE can use the Unix Makefile (target msc_dos),
  6. # if desired.  This makefile works just fine, too, however.  OS/2 users
  7. # can cross-compile using os2/makefile.os2 (target mscdos).  Note that
  8. # there is possibly a bug in MSC 6 which screws up funzip (goes into
  9. # infinite loop? --this has not been confirmed in over a year...).  There
  10. # is definitely a bug (internal compiler error) in MSC 6.00 while com-
  11. # piling explode.c (fixed in 6.0a, 6.0ax, 6.0ax2, 7.*, 8.*).
  12. #    GNU make doesn't like the return value from "rem"
  13. #STRIP=rem
  14. STRIP=echo  Ignore this line.
  15. #    If you don't have LZEXE or PKLITE, get one of them. Then define:
  16. #STRIP=lzexe
  17. #    or
  18. #STRIP=pklite
  19. #    and remove /e from LDFLAGS.
  20. #    This makes a big difference in .exe size (and possibly load time).
  21. #    Optional nonstandard preprocessor flags (as -DCHECK_EOF or -DDOS_WILD)
  22. #    should be added to the environment via "set LOCAL_UNZIP=-DFOO" or added
  23. #    to the declaration of LOC here:
  24. LOC = $(LOCAL_UNZIP)
  25. # Type for CPU required: 0: 8086, 1: 80186, 2: 80286, 3: 80386, etc.
  26. CPU_TYP = 0
  27. # small model for MSC 6.0 and 7.0?
  28. #UNMODEL=S # small model for UnZip and UnZipSFX
  29. # with MSC 5.1 and 8.x, small model exceeds 64k code segment; use medium instead
  30. UNMODEL=M # medium model for UnZip and UnZipSFX
  31. FUMODEL=S # always use small model for fUnZip
  32. # name of Flag to select memory model for assembler compiles, supported
  33. # values are __SMALL__ , __MEDIUM__ , __COMPACT__ , __LARGE__ :
  34. #ASUNMODEL=__SMALL__ # keep in sync with UNMODEL definition !!
  35. # for MSC 5.1 and 8.x use:
  36. ASUNMODEL=__MEDIUM__ # keep in sync with UNMODEL definition !!
  37. ASFUMODEL=__SMALL__ # keep in sync with FUMODEL definition !!
  38. # Uncomment the following three macros to use the optimized CRC32 assembler
  39. # routine in UnZip and UnZipSFX:
  40. ASMFLG = -DASM_CRC
  41. ASMOBJS = crc_i86.obj
  42. ASMOBJF = crc_i86_.obj
  43. ASCPUFLAG = __$(CPU_TYP)86
  44. CC = cl # -Ox does not work for inflate.c
  45. # add -G2(3,4) for 286 (386, 486) and/or -FPi87 for 80x87:
  46. CFLAGS = -nologo -DMSC $(ASMFLG) $(LOC) -G$(CPU_TYP) -Oait -Gs -I.
  47. AS = masm
  48. ASFLAGS = -ml -D$(ASCPUFLAG) $(LOC)
  49. LD = Link # mixed case to disable special handling by GNU Make
  50. # remove /e if you have LZEXE or PKLITE:
  51. LDFLAGS = /nologo/noi/e/st:0x0c00/farcall/packcode
  52. # "/farcall/packcode" are only useful for `large code' memory models
  53. # but should be a "no-op" for small code models.
  54. LDFLAGS2 = ,$*
  55. LDFLAGS2_UN = $(LDFLAGS2);
  56. LDFLAGS2_FU = $(LDFLAGS2);
  57. OBJS1 = unzip.obj crc32.obj crctab.obj crypt.obj envargs.obj explode.obj
  58. OBJS2 = extract.obj fileio.obj globals.obj inflate.obj list.obj match.obj
  59. OBJS3 = process.obj ttyio.obj unreduce.obj unshrink.obj zipinfo.obj
  60. OBJS4 = msdos.obj $(ASMOBJS)
  61. OBJS = $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4)
  62. OBJX1 = unzipsfx.obj crc32.obj crctab.obj crypt.obj extract_.obj fileio.obj
  63. OBJX2 = globals.obj inflate.obj match.obj process_.obj ttyio.obj
  64. OBJX3 = msdos_.obj $(ASMOBJS)
  65. OBJX = $(OBJX1) $(OBJX2) $(OBJX3)
  66. OBJF = funzip.obj crc32_.obj crypt_.obj globals_.obj inflate_.obj ttyio_.obj 
  67. $(ASMOBJF)
  68. UNZIP_H = unzip.h unzpriv.h globals.h msdos/doscfg.h
  69. default:        unzip.exe funzip.exe unzipsfx.exe
  70. #clean:
  71. # As long as the brain damaged old ``Make'' utility from MSC 5.1 and earlier
  72. # (NMAKE from MSC 6.0 + would work !) remains supported, a "clean" target
  73. # cannot be inserted !!
  74. # pattern rules for implicit dependencies:
  75. .asm.obj:
  76. $(AS) $(ASFLAGS) -D$(ASUNMODEL) $<, $@;
  77. .c.obj:
  78. $(CC) -c -A$(UNMODEL) $(CFLAGS) $*.c
  79. # individual dependencies and action rules:
  80. crc_i86.obj:    msdos/crc_i86.asm
  81. $(AS) $(ASFLAGS) -D$(ASUNMODEL) msdos/crc_i86.asm, $@;
  82. crc_i86_.obj:   msdos/crc_i86.asm
  83. $(AS) $(ASFLAGS) -D$(ASFUMODEL) msdos/crc_i86.asm, $@;
  84. crc32.obj:      crc32.c $(UNZIP_H) zip.h
  85. crc32_.obj:     crc32.c $(UNZIP_H) zip.h
  86. $(CC) -c -A$(FUMODEL) $(CFLAGS) -DFUNZIP -Focrc32_.obj crc32.c
  87. crctab.obj:     crctab.c $(UNZIP_H) zip.h
  88. crypt.obj:      crypt.c $(UNZIP_H) crypt.h ttyio.h zip.h
  89. crypt_.obj:     crypt.c $(UNZIP_H) crypt.h ttyio.h zip.h
  90. $(CC) -c -A$(FUMODEL) $(CFLAGS) -DFUNZIP -Focrypt_.obj crypt.c
  91. envargs.obj:    envargs.c $(UNZIP_H)
  92. explode.obj:    explode.c $(UNZIP_H)
  93. extract.obj:    extract.c $(UNZIP_H) crypt.h
  94. extract_.obj:   extract.c $(UNZIP_H) crypt.h
  95. $(CC) -c -A$(UNMODEL) $(CFLAGS) -DSFX -Foextract_.obj extract.c
  96. fileio.obj:     fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h
  97. funzip.obj:     funzip.c $(UNZIP_H) crypt.h ttyio.h tables.h
  98. $(CC) -c -A$(FUMODEL) $(CFLAGS) funzip.c
  99. globals.obj:    globals.c $(UNZIP_H)
  100. globals_.obj:   globals.c $(UNZIP_H)
  101. $(CC) -c -A$(FUMODEL) $(CFLAGS) -DFUNZIP -Foglobals_.obj globals.c
  102. inflate.obj:    inflate.c inflate.h $(UNZIP_H)
  103. inflate_.obj:   inflate.c inflate.h $(UNZIP_H) crypt.h
  104. $(CC) -c -A$(FUMODEL) $(CFLAGS) -DFUNZIP -Foinflate_.obj inflate.c
  105. list.obj:       list.c $(UNZIP_H)
  106. match.obj:      match.c $(UNZIP_H)
  107. msdos.obj:      msdos/msdos.c $(UNZIP_H)
  108. $(CC) -c -A$(UNMODEL) $(CFLAGS) msdos/msdos.c
  109. msdos_.obj:     msdos/msdos.c $(UNZIP_H)
  110. $(CC) -c -A$(UNMODEL) $(CFLAGS) -DSFX -Fomsdos_.obj msdos/msdos.c
  111. process.obj:    process.c $(UNZIP_H)
  112. process_.obj:   process.c $(UNZIP_H)
  113. $(CC) -c -A$(UNMODEL) $(CFLAGS) -DSFX -Foprocess_.obj process.c
  114. ttyio.obj:      ttyio.c $(UNZIP_H) crypt.h ttyio.h zip.h
  115. ttyio_.obj:     ttyio.c $(UNZIP_H) crypt.h ttyio.h zip.h
  116. $(CC) -c -A$(FUMODEL) $(CFLAGS) -DFUNZIP -Fottyio_.obj ttyio.c
  117. unreduce.obj:   unreduce.c $(UNZIP_H)
  118. unshrink.obj:   unshrink.c $(UNZIP_H)
  119. unzip.obj:      unzip.c $(UNZIP_H) crypt.h version.h consts.h
  120. unzipsfx.obj:   unzip.c $(UNZIP_H) crypt.h version.h consts.h
  121. $(CC) -c -A$(UNMODEL) $(CFLAGS) -DSFX -Founzipsfx.obj unzip.c
  122. zipinfo.obj:    zipinfo.c $(UNZIP_H)
  123. # MS make:
  124. # -------
  125. unzip.exe:      $(OBJS)
  126. echo $(OBJS1)+ > unzip.rsp
  127. echo $(OBJS2)+ >> unzip.rsp
  128. echo $(OBJS3)+ >> unzip.rsp
  129. echo $(OBJS4) >> unzip.rsp
  130. echo $(LDFLAGS2_UN) >> unzip.rsp
  131. $(LD) $(LDFLAGS) @unzip.rsp
  132. del unzip.rsp
  133. $(STRIP) unzip.exe
  134. unzipsfx.exe:   $(OBJX)
  135. echo $(OBJX1)+ > unzipsfx.rsp
  136. echo $(OBJX2)+ >> unzipsfx.rsp
  137. echo $(OBJX3) >> unzipsfx.rsp
  138. echo $(LDFLAGS2_UN) >> unzipsfx.rsp
  139. $(LD) $(LDFLAGS) @unzipsfx.rsp
  140. del unzipsfx.rsp
  141. $(STRIP) unzipsfx.exe
  142. funzip.exe:     $(OBJF)
  143. echo $(OBJF) > funzip.rsp
  144. echo $(LDFLAGS2_FU) >> funzip.rsp
  145. $(LD) $(LDFLAGS) @funzip.rsp
  146. del funzip.rsp
  147. $(STRIP) funzip.exe
  148. # better makes which know how to deal with 128-char limit on command line:
  149. # -----------------------------------------------------------------------
  150. #unzip.exe:      $(OBJS)
  151. # $(LD) $(LDFLAGS) $(OBJS) $(LDFLAGS2)
  152. # $(STRIP) unzip.exe
  153. #
  154. #unzipsfx.exe:   $(OBJX)
  155. # $(LD) $(LDFLAGS) $(OBJX) $(LDFLAGS2)
  156. # $(STRIP) unzipsfx.exe
  157. #
  158. #funzip.exe:     $(OBJF)
  159. # $(LD) $(LDFLAGS) $(OBJF) $(LDFLAGS2_FU)
  160. # $(STRIP) funzip.exe