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

压缩解压

开发平台:

MultiPlatform

  1. # Makefile for UnZip(SFX) and fUnZip for Borland C++ 2.x-4.x and Turbo C++ 1.0
  2. # Version: 5.20 and later        Alvin Koh, Jim Knoble, Christian Spieler, etc.
  3. #
  4. # Last revised:  16 Apr 98
  5. #
  6. # To compile with Turbo C++ 1.0, set the macro CC_REV to 1 at the command line
  7. # (make -fmsdos/makefile.bc -DCC_REV=1).
  8. #    GNU make doesn't like the return value from "rem"
  9. #STRIP=rem
  10. STRIP=echo  Ignore this line.
  11. #    If you don't have LZEXE or PKLITE, get one of them. Then define:
  12. #STRIP=lzexe
  13. #    or
  14. #STRIP=pklite
  15. #    This makes a big difference in .exe size (and possibly load time).
  16. #    Optional nonstandard preprocessor flags (as -DCHECK_EOF or -DDOS_WILD)
  17. #    should be added to the environment via "set LOCAL_UNZIP=-DFOO" or added
  18. #    to the declaration of LOC here:
  19. LOC = $(LOCAL_UNZIP)
  20. # Type for CPU required: 0: 8086, 1: 80186, 2: 80286, 3: 80386, etc.
  21. CPU_TYP = 0
  22. # (De)Select inclusion of optimized assembler CRC32 routine:
  23. USE_ASMCRC = 1
  24. !if $(CC_REV) == 1
  25. # Turbo C++ 1.0
  26. CC = tcc
  27. !else
  28. # Borland C++ 2.0, 3.0, 3.1 ...
  29. ! if !$(CC_REV)
  30. CC_REV = 3
  31. ! endif
  32. CC = bcc
  33. !endif
  34. AS = tasm
  35. # "near data" model is sufficient for UnZip and ZipInfo, now that strings moved
  36. # switched to medium model; UnZip code has grown beyond the 64k limit.
  37. UNMODEL = m # medium model for UnZip and ZipInfo
  38. ASUNMODEL=__MEDIUM__ # keep in sync with UNMODEL definition !!
  39. FUMODEL = s # always use small model for fUnZip
  40. ASFUMODEL=__SMALL__ # keep in sync with FUMODEL definition !!
  41. !if $(USE_ASMCRC)
  42. ASMFLG = -DASM_CRC
  43. ASMOBJS = crc_i86.obj
  44. ASMOBJF = crc_i86_.obj
  45. !else
  46. ASMFLG =
  47. ASMOBJS =
  48. ASMOBJF =
  49. !endif
  50. # compiler flags
  51. ASCPUFLAG = __$(CPU_TYP)86
  52. !if $(CPU_TYP) != 0
  53. CC_CPUFLG = -$(CPU_TYP)
  54. !endif
  55. ASFLAGS = -ml -m2 -w0 -D$(ASCPUFLAG) $(LOC)
  56. !if $(CC_REV) == 1
  57. # Bug: TC ++ 1.0 ignores "far" on "const" strings, so const is disabled!
  58. CCOPTIM = -O -G -Z -a -d -DZCONST
  59. LDFLAGS = -lxncd # for tcc
  60. !else
  61. CCOPTIM = -O2
  62. LDFLAGS = -lxncd -l-P # for bcc
  63. !endif
  64. CFLAGS  = $(CCOPTIM) $(CC_CPUFLG) -ff- -k- -P-.C -I. $(ASMFLG) $(LOC)
  65. UNFLAGS = -m$(UNMODEL) $(CFLAGS)
  66. FUFLAGS = -m$(FUMODEL) $(CFLAGS) -K -d
  67. SXFLAGS = -m$(UNMODEL) $(CFLAGS)
  68. # implicit rules
  69. .asm.obj:
  70. $(AS) $(ASFLAGS) -D$(ASUNMODEL) $<
  71. .c.obj:
  72. $(CC) -c $(UNFLAGS) {$< }
  73. # list macros
  74. OBJU1 = unzip.obj crc32.obj crctab.obj crypt.obj envargs.obj explode.obj
  75. OBJU2 = extract.obj fileio.obj globals.obj inflate.obj list.obj match.obj
  76. OBJU3 = process.obj ttyio.obj unreduce.obj unshrink.obj zipinfo.obj
  77. OBJUS = msdos.obj $(ASMOBJS)
  78. OBJU  = $(OBJU1) $(OBJU2) $(OBJU3) $(OBJUS)
  79. OBJF  = funzip.obj crc32f.obj cryptf.obj globalsf.obj inflatef.obj 
  80. ttyiof.obj $(ASMOBJF)
  81. OBJX1 = unzipsfx.obj crc32.obj crctab.obj crypt.obj extractx.obj fileio.obj
  82. OBJX2 = globals.obj inflate.obj match.obj processx.obj ttyio.obj
  83. OBJXS = msdosx.obj $(ASMOBJS)
  84. OBJX  = $(OBJX1) $(OBJX2) $(OBJXS)
  85. UNZIP_H = unzip.h unzpriv.h globals.h msdos/doscfg.h
  86. # explicit rules
  87. all:    unzip.exe funzip.exe unzipsfx.exe
  88. unzip.exe:      $(OBJU)
  89. $(CC) -m$(UNMODEL) $(LDFLAGS) -eunzip.exe @&&|
  90. $(OBJU)
  91. |
  92. $(STRIP) unzip.exe
  93. funzip.exe:     $(OBJF)
  94. $(CC) -m$(FUMODEL) $(LDFLAGS) -efunzip.exe @&&|
  95. $(OBJF)
  96. |
  97. $(STRIP) funzip.exe
  98. unzipsfx.exe:   $(OBJX)
  99. $(CC) -m$(UNMODEL) $(LDFLAGS) -eunzipsfx.exe @&&|
  100. $(OBJX)
  101. |
  102. $(STRIP) unzipsfx.exe
  103. clean:
  104. rem Ignore any errors in the following...
  105. -del *.obj
  106. -del unzip.exe
  107. -del funzip.exe
  108. -del unzipsfx.exe
  109. # individual file dependencies
  110. crc32.obj:      crc32.c $(UNZIP_H) zip.h
  111. crctab.obj:     crctab.c $(UNZIP_H) zip.h
  112. crypt.obj:      crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
  113. envargs.obj:    envargs.c $(UNZIP_H)
  114. explode.obj:    explode.c $(UNZIP_H)
  115. extract.obj:    extract.c $(UNZIP_H) crypt.h
  116. fileio.obj:     fileio.c $(UNZIP_H) crypt.h ttyio.h ebcdic.h
  117. globals.obj:    globals.c $(UNZIP_H)
  118. inflate.obj:    inflate.c inflate.h $(UNZIP_H)
  119. list.obj:       list.c $(UNZIP_H)
  120. match.obj:      match.c $(UNZIP_H)
  121. process.obj:    process.c $(UNZIP_H)
  122. ttyio.obj:      ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
  123. unreduce.obj:   unreduce.c $(UNZIP_H)
  124. unshrink.obj:   unshrink.c $(UNZIP_H)
  125. unzip.obj:      unzip.c $(UNZIP_H) crypt.h version.h consts.h
  126. zipinfo.obj:    zipinfo.c $(UNZIP_H)
  127. crc_i86.obj:    msdos/crc_i86.asm
  128. $(AS) $(ASFLAGS) -D$(ASUNMODEL) msdoscrc_i86.asm, $*.obj ;
  129. crc_i86_.obj:   msdos/crc_i86.asm
  130. $(AS) $(ASFLAGS) -D$(ASFUMODEL) msdoscrc_i86.asm, $*.obj ;
  131. msdos.obj:      msdos/msdos.c $(UNZIP_H)
  132. $(CC) -c $(UNFLAGS) msdos/msdos.c
  133. funzip.obj:     funzip.c $(UNZIP_H) crypt.h ttyio.h tables.h
  134. $(CC) -c $(FUFLAGS) funzip.c
  135. crc32f.obj:     crc32.c $(UNZIP_H) zip.h
  136. $(CC) -c $(FUFLAGS) -DFUNZIP -ocrc32f.obj crc32.c
  137. cryptf.obj:     crypt.c $(UNZIP_H) zip.h crypt.h ttyio.h
  138. $(CC) -c $(FUFLAGS) -DFUNZIP -ocryptf.obj crypt.c
  139. globalsf.obj:   globals.c $(UNZIP_H)
  140. $(CC) -c $(FUFLAGS) -DFUNZIP -oglobalsf.obj globals.c
  141. inflatef.obj:   inflate.c inflate.h $(UNZIP_H) crypt.h
  142. $(CC) -c $(FUFLAGS) -DFUNZIP -oinflatef.obj inflate.c
  143. ttyiof.obj:     ttyio.c $(UNZIP_H) zip.h crypt.h ttyio.h
  144. $(CC) -c $(FUFLAGS) -DFUNZIP -ottyiof.obj ttyio.c
  145. unzipsfx.obj:   unzip.c $(UNZIP_H) crypt.h version.h consts.h
  146. $(CC) -c $(SXFLAGS) -DSFX -ounzipsfx.obj unzip.c
  147. extractx.obj:   extract.c $(UNZIP_H) crypt.h
  148. $(CC) -c $(SXFLAGS) -DSFX -oextractx.obj extract.c
  149. processx.obj:   process.c $(UNZIP_H)
  150. $(CC) -c $(SXFLAGS) -DSFX -oprocessx.obj process.c
  151. msdosx.obj:     msdos/msdos.c $(UNZIP_H)
  152. $(CC) -c $(SXFLAGS) -DSFX -omsdosx.obj msdos/msdos.c