home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / ObjRepos / LogoApp / LOGOAPP.BPR < prev    next >
Encoding:
Text File  |  1999-01-26  |  4.7 KB  |  191 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 = Logoapp.exe
  17. OBJFILES = Logoapp.obj LogoMain.obj about.obj
  18. RESFILES = LogoStrs.res LogoApp.res
  19. RESDEPEN = $(RESFILES) LogoMain.dfm about.dfm
  20. LIBFILES =
  21. IDLFILES =
  22. IDLGENFILES =
  23. LIBRARIES =
  24. SPARELIBS = Vcl40.lib
  25. PACKAGES = Vcl40.bpi Vclx40.bpi
  26. DEFFILE =
  27. # ---------------------------------------------------------------------------
  28. PATHCPP = .;
  29. PATHASM = .;
  30. PATHPAS = .;
  31. PATHRC = .;
  32. DEBUGLIBPATH = $(BCB)\lib\debug
  33. RELEASELIBPATH = $(BCB)\lib\release
  34. SYSDEFINES = NO_STRICT;_RTLDLL;USEPACKAGES
  35. USERDEFINES =
  36. # ---------------------------------------------------------------------------
  37. CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl -Od -Hc -H=$(BCB)\lib\vcl40.csm -w -Ve -r- \
  38.   -a8 -k -y -v -vi- -D$(SYSDEFINES);$(USERDEFINES) -c -b- -w-par -w-inl -Vx -tW
  39. IDLCFLAGS = -src_suffixcpp
  40. PFLAGS = -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
  41.   -I$(BCB)\include;$(BCB)\include\vcl -$YD -$W -$O- -v -JPHN -M
  42. RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl
  43. AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zd /d_RTLDLL /dUSEPACKAGES
  44. LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) -aa -Tpe -x -v
  45. # ---------------------------------------------------------------------------
  46. ALLOBJ = c0w32.obj Memmgr.Lib $(PACKAGES) sysinit.obj $(OBJFILES)
  47. ALLRES = $(RESFILES)
  48. ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
  49. # ---------------------------------------------------------------------------
  50. !ifdef IDEOPTIONS
  51.  
  52. [Version Info]
  53. IncludeVerInfo=0
  54. AutoIncBuild=0
  55. MajorVer=1
  56. MinorVer=0
  57. Release=0
  58. Build=0
  59. Debug=0
  60. PreRelease=0
  61. Special=0
  62. Private=0
  63. DLL=0
  64. Locale=1033
  65. CodePage=1252
  66.  
  67. [Version Info Keys]
  68. CompanyName=
  69. FileDescription=
  70. FileVersion=1.0.0.0
  71. InternalName=
  72. LegalCopyright=
  73. LegalTrademarks=
  74. OriginalFilename=
  75. ProductName=
  76. ProductVersion=1.0.0.0
  77. Comments=
  78.  
  79. [HistoryLists\hlIncludePath]
  80. Count=1
  81. Item0=$(BCB)\include;$(BCB)\include\vcl
  82.  
  83. [HistoryLists\hlLibraryPath]
  84. Count=1
  85. Item0=$(BCB)\lib\obj;$(BCB)\lib
  86.  
  87. [HistoryLists\hlDebugSourcePath]
  88. Count=1
  89. Item0=$(BCB)\source\vcl
  90.  
  91. [HistoryLists\hlConditionals]
  92. Count=1
  93. Item0=_RTLDLL;USEPACKAGES
  94.  
  95. [Debugging]
  96. DebugSourceDirs=$(BCB)\source\vcl
  97.  
  98. [Parameters]
  99. RunParams=
  100. HostApplication=
  101. RemoteHost=
  102. RemotePath=
  103. RemoteDebug=0
  104.  
  105. [Compiler]
  106. InMemoryExe=0
  107. ShowInfoMsgs=0
  108.  
  109. !endif
  110.  
  111. # ---------------------------------------------------------------------------
  112. # MAKE SECTION
  113. # ---------------------------------------------------------------------------
  114. # This section of the project file is not used by the BCB IDE.  It is for
  115. # the benefit of building from the command-line using the MAKE utility.
  116. # ---------------------------------------------------------------------------
  117.  
  118. .autodepend
  119. # ---------------------------------------------------------------------------
  120. !if !$d(BCC32)
  121. BCC32 = bcc32
  122. !endif
  123.  
  124. !if !$d(DCC32)
  125. DCC32 = dcc32
  126. !endif
  127.  
  128. !if !$d(TASM32)
  129. TASM32 = tasm32
  130. !endif
  131.  
  132. !if !$d(LINKER)
  133. LINKER = ilink32
  134. !endif
  135.  
  136. !if !$d(BRCC32)
  137. BRCC32 = brcc32
  138. !endif
  139.  
  140. !if !$d(IDL2CPP)
  141. IDL2CPP = idl2cpp
  142. !endif
  143.  
  144. # ---------------------------------------------------------------------------
  145. !if $d(PATHCPP)
  146. .PATH.CPP = $(PATHCPP)
  147. .PATH.C   = $(PATHCPP)
  148. !endif
  149.  
  150. !if $d(PATHPAS)
  151. .PATH.PAS = $(PATHPAS)
  152. !endif
  153.  
  154. !if $d(PATHASM)
  155. .PATH.ASM = $(PATHASM)
  156. !endif
  157.  
  158. !if $d(PATHRC)
  159. .PATH.RC  = $(PATHRC)
  160. !endif
  161. # ---------------------------------------------------------------------------
  162. $(PROJECT): $(IDLGENFILES) $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  163.     $(BCB)\BIN\$(LINKER) @&&!
  164.     $(LFLAGS) +
  165.     $(ALLOBJ), +
  166.     $(PROJECT),, +
  167.     $(ALLLIB), +
  168.     $(DEFFILE), +
  169.     $(ALLRES)
  170. !
  171. # ---------------------------------------------------------------------------
  172. .pas.hpp:
  173.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  174.  
  175. .pas.obj:
  176.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  177.  
  178. .cpp.obj:
  179.     $(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
  180.  
  181. .c.obj:
  182.     $(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
  183.  
  184. .asm.obj:
  185.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  186.  
  187. .rc.res:
  188.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  189. # ---------------------------------------------------------------------------
  190.  
  191.