AutocompleteCB3.bpr
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:5k
源码类别:

RichEdit

开发平台:

Delphi

  1. # ---------------------------------------------------------------------------
  2. !if !$d(BCB)
  3. BCB = $(MAKEDIR)..
  4. !endif
  5. # ---------------------------------------------------------------------------
  6. # IDE SECTION
  7. # ---------------------------------------------------------------------------
  8. # The following section of the project makefile is managed by the BCB IDE.
  9. # It is recommended to use the IDE to change any of the values in this
  10. # section.
  11. # ---------------------------------------------------------------------------
  12. VERSION = BCB.03
  13. # ---------------------------------------------------------------------------
  14. PROJECT = AutocompleteCB3.exe
  15. OBJFILES = AutocompleteCB3.obj Unit1.obj
  16. RESFILES = AutocompleteCB3.res
  17. DEFFILE =
  18. RESDEPEN = $(RESFILES) Unit1.dfm
  19. LIBFILES =
  20. LIBRARIES = VCL35.lib
  21. SPARELIBS = VCL35.lib
  22. PACKAGES = vclx35.bpi VCL35.bpi vcldb35.bpi vcldbx35.bpi bcbsmp35.bpi dclocx35.bpi 
  23.   Qrpt35.bpi teeui35.bpi teedb35.bpi tee35.bpi ibsmp35.bpi dss35.bpi NMFast35.bpi 
  24.   inetdb35.bpi inet35.bpi VclMid35.bpi
  25. # ---------------------------------------------------------------------------
  26. PATHCPP = .;
  27. PATHASM = .;
  28. PATHPAS = .;
  29. PATHRC = .;
  30. DEBUGLIBPATH = $(BCB)libdebug
  31. RELEASELIBPATH = $(BCB)librelease
  32. # ---------------------------------------------------------------------------
  33. CFLAG1 = -Od -Hc -w -Ve -r- -k -y -v -vi- -c -b- -w-par -w-inl -Vx -tW
  34. CFLAG2 = -I$(BCB)include;$(BCB)includevcl;d:richviewtemp -H=$(BCB)libvcl35.csm
  35. CFLAG3 = -Tkh30000
  36. PFLAGS = -U$(BCB)libobj;$(BCB)lib;d:richviewtemp;$(RELEASELIBPATH) 
  37.   -I$(BCB)include;$(BCB)includevcl;d:richviewtemp -$Y -$W -$O- -v -JPHN -M
  38. RFLAGS = -i$(BCB)include;$(BCB)includevcl;d:richviewtemp
  39. AFLAGS = /i$(BCB)include /i$(BCB)includevcl /id:richviewtemp /mx /w2 /zd /d_RTLDLL 
  40.   /dUSEPACKAGES
  41. LFLAGS = -L$(BCB)libobj;$(BCB)lib;d:richviewtemp;$(RELEASELIBPATH) -aa -Tpe -x -Gn -v
  42. IFLAGS =
  43. # ---------------------------------------------------------------------------
  44. ALLOBJ = c0w32.obj sysinit.obj $(OBJFILES)
  45. ALLRES = $(RESFILES)
  46. ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mt.lib
  47. # ---------------------------------------------------------------------------
  48. !ifdef IDEOPTIONS
  49. [Version Info]
  50. IncludeVerInfo=0
  51. AutoIncBuild=0
  52. MajorVer=1
  53. MinorVer=0
  54. Release=0
  55. Build=0
  56. Debug=0
  57. PreRelease=0
  58. Special=0
  59. Private=0
  60. DLL=0
  61. Locale=1049
  62. CodePage=1251
  63. [Version Info Keys]
  64. CompanyName=
  65. FileDescription=
  66. FileVersion=1.0.0.0
  67. InternalName=
  68. LegalCopyright=
  69. LegalTrademarks=
  70. OriginalFilename=
  71. ProductName=
  72. ProductVersion=1.0.0.0
  73. Comments=
  74. [HistoryListshlIncludePath]
  75. Count=1
  76. Item0=$(BCB)include;$(BCB)includevcl;d:richviewtemp
  77. [HistoryListshlLibraryPath]
  78. Count=2
  79. Item0=$(BCB)libobj;$(BCB)lib;d:richviewtemp
  80. Item1=$(BCB)libobj;$(BCB)lib
  81. [HistoryListshlDebugSourcePath]
  82. Count=1
  83. Item0=$(BCB)sourcevcl
  84. [Debugging]
  85. DebugSourceDirs=$(BCB)sourcevcl
  86. [Parameters]
  87. RunParams=
  88. HostApplication=
  89. !endif
  90. # ---------------------------------------------------------------------------
  91. # MAKE SECTION
  92. # ---------------------------------------------------------------------------
  93. # This section of the project file is not used by the BCB IDE.  It is for
  94. # the benefit of building from the command-line using the MAKE utility.
  95. # ---------------------------------------------------------------------------
  96. .autodepend
  97. # ---------------------------------------------------------------------------
  98. !if !$d(BCC32)
  99. BCC32 = bcc32
  100. !endif
  101. !if !$d(DCC32)
  102. DCC32 = dcc32
  103. !endif
  104. !if !$d(TASM32)
  105. TASM32 = tasm32
  106. !endif
  107. !if !$d(LINKER)
  108. LINKER = ilink32
  109. !endif
  110. !if !$d(BRCC32)
  111. BRCC32 = brcc32
  112. !endif
  113. # ---------------------------------------------------------------------------
  114. !if $d(PATHCPP)
  115. .PATH.CPP = $(PATHCPP)
  116. .PATH.C   = $(PATHCPP)
  117. !endif
  118. !if $d(PATHPAS)
  119. .PATH.PAS = $(PATHPAS)
  120. !endif
  121. !if $d(PATHASM)
  122. .PATH.ASM = $(PATHASM)
  123. !endif
  124. !if $d(PATHRC)
  125. .PATH.RC  = $(PATHRC)
  126. !endif
  127. # ---------------------------------------------------------------------------
  128. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  129.     $(BCB)BIN$(LINKER) @&&!
  130.     $(LFLAGS) +
  131.     $(ALLOBJ), +
  132.     $(PROJECT),, +
  133.     $(ALLLIB), +
  134.     $(DEFFILE), +
  135.     $(ALLRES)
  136. !
  137. # ---------------------------------------------------------------------------
  138. .pas.hpp:
  139.     $(BCB)BIN$(DCC32) $(PFLAGS) {$< }
  140. .pas.obj:
  141.     $(BCB)BIN$(DCC32) $(PFLAGS) {$< }
  142. .cpp.obj:
  143.     $(BCB)BIN$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  144. .c.obj:
  145.     $(BCB)BIN$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  146. .asm.obj:
  147.     $(BCB)BIN$(TASM32) $(AFLAGS) $<, $@
  148. .rc.res:
  149.     $(BCB)BIN$(BRCC32) $(RFLAGS) -fo$@ $<
  150. # ---------------------------------------------------------------------------