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

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