home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Examples / Apps / RichEdit / RICHEDIT.BPR < prev    next >
Encoding:
Text File  |  1999-01-26  |  5.2 KB  |  205 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 = richedit.exe
  17. OBJFILES = reinit.obj ReConst.obj richedit.obj Richabt.obj Romain.obj
  18. RESFILES = richedit.res
  19. RESDEPEN = $(RESFILES) Richabt.dfm Romain.dfm
  20. LIBFILES =
  21. IDLGENFILES =
  22. IDLFILES =
  23. LIBRARIES = Vclx40.lib Vcl40.lib
  24. SPARELIBS = Vcl40.lib Vclx40.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. USERDEFINES =
  35. SYSDEFINES = _RTLDLL;NO_STRICT
  36. # ---------------------------------------------------------------------------
  37. CFLAG1 = -I$(BCB)\Projects\Examples\Apps\RichEdit;$(BCB)\include;$(BCB)\include\vcl -Od \
  38.   -Hc -H=$(BCB)\lib\vcl40.csm -w -Ve -r- -a8 -k -y -v -vi- -c -b- -w-par -w-inl \
  39.   -Vx -tW -tWM -D$(SYSDEFINES);$(USERDEFINES)
  40. IDLCFLAGS = -I$(BCB)\Projects\Examples\Apps\RichEdit -I$(BCB)\include -I$(BCB)\include\vcl \
  41.   -src_suffixcpp
  42. PFLAGS = -U$(BCB)\Projects\Examples\Apps\RichEdit;$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
  43.   -I$(BCB)\Projects\Examples\Apps\RichEdit;$(BCB)\include;$(BCB)\include\vcl -$YD \
  44.   -$W -$O- -v -JPHNE -M
  45. RFLAGS = -i$(BCB)\Projects\Examples\Apps\RichEdit;$(BCB)\include;$(BCB)\include\vcl
  46. AFLAGS = /i..\Examples\Apps\RichEdit /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zd
  47. LFLAGS = -L$(BCB)\Projects\Examples\Apps\RichEdit;$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
  48.   -aa -Tpe -x -Gn -v
  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=1
  85. Item0=..\Examples\Apps\RichEdit;$(BCB)\include;$(BCB)\include\vcl
  86.  
  87. [HistoryLists\hlLibraryPath]
  88. Count=1
  89. Item0=..\Examples\Apps\RichEdit;$(BCB)\lib\obj;$(BCB)\lib
  90.  
  91. [HistoryLists\hlDebugSourcePath]
  92. Count=1
  93. Item0=$(BCB)\source\vcl
  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. [CORBA]
  110. AddServerUnit=1
  111. AddClientUnit=1
  112. PrecompiledHeaders=1
  113.  
  114. !endif
  115.  
  116. # ---------------------------------------------------------------------------
  117. # MAKE SECTION
  118. # ---------------------------------------------------------------------------
  119. # This section of the project file is not used by the BCB IDE.  It is for
  120. # the benefit of building from the command-line using the MAKE utility.
  121. # ---------------------------------------------------------------------------
  122.  
  123. .autodepend
  124. # ---------------------------------------------------------------------------
  125. !if !$d(BCC32)
  126. BCC32 = bcc32
  127. !endif
  128.  
  129. !if !$d(CPP32)
  130. CPP32 = cpp32
  131. !endif
  132.  
  133. !if !$d(DCC32)
  134. DCC32 = dcc32
  135. !endif
  136.  
  137. !if !$d(TASM32)
  138. TASM32 = tasm32
  139. !endif
  140.  
  141. !if !$d(LINKER)
  142. LINKER = ilink32
  143. !endif
  144.  
  145. !if !$d(BRCC32)
  146. BRCC32 = brcc32
  147. !endif
  148.  
  149. !if !$d(IDL2CPP)
  150. IDL2CPP = idl2cpp
  151. !endif
  152.  
  153. # ---------------------------------------------------------------------------
  154. !if $d(PATHCPP)
  155. .PATH.CPP = $(PATHCPP)
  156. .PATH.C   = $(PATHCPP)
  157. !endif
  158.  
  159. !if $d(PATHPAS)
  160. .PATH.PAS = $(PATHPAS)
  161. !endif
  162.  
  163. !if $d(PATHASM)
  164. .PATH.ASM = $(PATHASM)
  165. !endif
  166.  
  167. !if $d(PATHRC)
  168. .PATH.RC  = $(PATHRC)
  169. !endif
  170. # ---------------------------------------------------------------------------
  171. $(PROJECT): $(IDLGENFILES) $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  172.     $(BCB)\BIN\$(LINKER) @&&!
  173.     $(LFLAGS) +
  174.     $(ALLOBJ), +
  175.     $(PROJECT),, +
  176.     $(ALLLIB), +
  177.     $(DEFFILE), +
  178.     $(ALLRES)
  179. !
  180. # ---------------------------------------------------------------------------
  181. .pas.hpp:
  182.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  183.  
  184. .pas.obj:
  185.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  186.  
  187. .cpp.obj:
  188.     $(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
  189.  
  190. .c.obj:
  191.     $(BCB)\BIN\$(BCC32) $(CFLAG1) -n$(@D) {$< }
  192.  
  193. .c.i:
  194.     $(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
  195.  
  196. .cpp.i:
  197.     $(BCB)\BIN\$(CPP32) $(CFLAG1) -n. {$< }
  198.  
  199. .asm.obj:
  200.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  201.  
  202. .rc.res:
  203.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  204. # ---------------------------------------------------------------------------
  205.