home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / vbasic / Data / Utils / XZipComp.exe / XceedZip.Cab / F112514_MemoryCompression.bpr < prev    next >
Encoding:
Text File  |  2001-05-10  |  5.0 KB  |  188 lines

  1. # ---------------------------------------------------------------------------
  2. !if !$d(BCB)
  3. BCB = $(MAKEDIR)\..
  4. !endif
  5.  
  6. # ---------------------------------------------------------------------------
  7. # IDE SECTION
  8. # ---------------------------------------------------------------------------
  9. # The following section of the project makefile is managed by the BCB IDE.
  10. # It is recommended to use the IDE to change any of the values in this
  11. # section.
  12. # ---------------------------------------------------------------------------
  13.  
  14. VERSION = BCB.04.04
  15. # ---------------------------------------------------------------------------
  16. PROJECT = MemoryCompression.exe
  17. OBJFILES = MemoryCompression.obj MsgStack.obj
  18. RESFILES = MemoryCompression.res
  19. DEFFILE =
  20. RESDEPEN = $(RESFILES) MsgStack.dfm
  21. LIBFILES =
  22. LIBRARIES = XceedZip.lib vcl40.lib
  23. SPARELIBS = vcl40.lib XceedZip.lib
  24. PACKAGES = vclx40.bpi vcl40.bpi vcldb40.bpi vcldbx40.bpi bcbsmp40.bpi dclocx40.bpi \
  25.   qrpt40.bpi
  26. # ---------------------------------------------------------------------------
  27. PATHCPP = .;
  28. PATHASM = .;
  29. PATHPAS = .;
  30. PATHRC = .;
  31. DEBUGLIBPATH = $(BCB)\lib\debug
  32. RELEASELIBPATH = $(BCB)\lib\release
  33. SYSDEFINES = NO_STRICT;_RTLDLL
  34. USERDEFINES =
  35. # ---------------------------------------------------------------------------
  36. CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl;$(BCB)\imports -Od -Hc \
  37.   -H=$(BCB)\lib\vcl40.csm -w -Ve -Tkh30000 -r- -a8 -k -y -v -vi- \
  38.   -D$(SYSDEFINES);$(USERDEFINES) -c -b- -w-par -w-inl -Vx -tW -tWM
  39. CFLAG2 =
  40. CFLAG3 =
  41. PFLAGS = -U$(BCB)\lib\obj;$(BCB)\lib;$(BCB)\Imports;$(BCB)\Projects\Lib;$(RELEASELIBPATH) \
  42.   -I$(BCB)\include;$(BCB)\include\vcl;$(BCB)\imports -$YD -$W -$O- -v -M -JPHNE
  43. RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl;$(BCB)\imports
  44. AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /i$(BCB)\imports /mx /w2 /zd /d_RTLDLL \
  45.   /dUSEPACKAGES
  46. LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(BCB)\Imports;$(BCB)\Projects\Lib;$(RELEASELIBPATH) \
  47.   -aa -Tpe -x -Gn -v
  48. IFLAGS =
  49. # ---------------------------------------------------------------------------
  50. ALLOBJ = c0w32.obj Memmgr.Lib sysinit.obj $(OBJFILES)
  51. ALLRES = $(RESFILES)
  52. ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
  53. # ---------------------------------------------------------------------------
  54. !ifdef IDEOPTIONS
  55.  
  56. [Version Info]
  57. IncludeVerInfo=0
  58. AutoIncBuild=0
  59. MajorVer=1
  60. MinorVer=0
  61. Release=0
  62. Build=0
  63. Debug=0
  64. PreRelease=0
  65. Special=0
  66. Private=0
  67. DLL=0
  68. Locale=1033
  69. CodePage=1252
  70.  
  71. [Version Info Keys]
  72. CompanyName=
  73. FileDescription=
  74. FileVersion=1.0.0.0
  75. InternalName=
  76. LegalCopyright=
  77. LegalTrademarks=
  78. OriginalFilename=
  79. ProductName=
  80. ProductVersion=1.0.0.0
  81. Comments=
  82.  
  83. [HistoryLists\hlIncludePath]
  84. Count=2
  85. Item0=$(BCB)\include;$(BCB)\include\vcl;$(BCB)\imports
  86. Item1=$(BCB)\include;$(BCB)\include\vcl
  87.  
  88. [HistoryLists\hlLibraryPath]
  89. Count=3
  90. Item0=$(BCB)\lib\obj;$(BCB)\lib;$(BCB)\Imports;$(BCB)\Projects\Lib
  91. Item1=$(BCB)\lib\obj;$(BCB)\lib;$(BCB)\Imports
  92. Item2=..\..\getting started\c++builder 3;$(BCB)\lib\obj;$(BCB)\lib
  93.  
  94. [HistoryLists\hlDebugSourcePath]
  95. Count=1
  96. Item0=$(BCB)\source\vcl
  97.  
  98. [Debugging]
  99. DebugSourceDirs=$(BCB)\source\vcl
  100.  
  101. [Parameters]
  102. RunParams=
  103. HostApplication=
  104. RemoteHost=
  105. RemotePath=
  106. RemoteDebug=0
  107.  
  108. [Compiler]
  109. InMemoryExe=0
  110. ShowInfoMsgs=0
  111.  
  112. !endif
  113.  
  114. # ---------------------------------------------------------------------------
  115. # MAKE SECTION
  116. # ---------------------------------------------------------------------------
  117. # This section of the project file is not used by the BCB IDE.  It is for
  118. # the benefit of building from the command-line using the MAKE utility.
  119. # ---------------------------------------------------------------------------
  120.  
  121. .autodepend
  122. # ---------------------------------------------------------------------------
  123. !if !$d(BCC32)
  124. BCC32 = bcc32
  125. !endif
  126.  
  127. !if !$d(DCC32)
  128. DCC32 = dcc32
  129. !endif
  130.  
  131. !if !$d(TASM32)
  132. TASM32 = tasm32
  133. !endif
  134.  
  135. !if !$d(LINKER)
  136. LINKER = ilink32
  137. !endif
  138.  
  139. !if !$d(BRCC32)
  140. BRCC32 = brcc32
  141. !endif
  142. # ---------------------------------------------------------------------------
  143. !if $d(PATHCPP)
  144. .PATH.CPP = $(PATHCPP)
  145. .PATH.C   = $(PATHCPP)
  146. !endif
  147.  
  148. !if $d(PATHPAS)
  149. .PATH.PAS = $(PATHPAS)
  150. !endif
  151.  
  152. !if $d(PATHASM)
  153. .PATH.ASM = $(PATHASM)
  154. !endif
  155.  
  156. !if $d(PATHRC)
  157. .PATH.RC  = $(PATHRC)
  158. !endif
  159. # ---------------------------------------------------------------------------
  160. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  161.     $(BCB)\BIN\$(LINKER) @&&!
  162.     $(LFLAGS) +
  163.     $(ALLOBJ), +
  164.     $(PROJECT),, +
  165.     $(ALLLIB), +
  166.     $(DEFFILE), +
  167.     $(ALLRES)
  168. !
  169. # ---------------------------------------------------------------------------
  170. .pas.hpp:
  171.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  172.  
  173. .pas.obj:
  174.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  175.  
  176. .cpp.obj:
  177.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  178.  
  179. .c.obj:
  180.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  181.  
  182. .asm.obj:
  183.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  184.  
  185. .rc.res:
  186.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  187. # ---------------------------------------------------------------------------
  188.