DragImgCB3.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 = DragImgCB3.exe
  15. OBJFILES = DragImgCB3.obj Unit1.obj
  16. RESFILES = DragImgCB3.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:richviewtemp -H=$(BCB)libvcl35.csm
  33. CFLAG3 = -Tkh30000
  34. PFLAGS = -U$(BCB)libobj;$(BCB)lib;d:richviewtemp;$(RELEASELIBPATH) 
  35.   -I$(BCB)include;$(BCB)includevcl;d:richviewtemp -$Y -$W -$O- -v -JPHN -M
  36. RFLAGS = -i$(BCB)include;$(BCB)includevcl;d:richviewtemp
  37. AFLAGS = /i$(BCB)include /i$(BCB)includevcl /id:richviewtemp /mx /w2 /zd /d_RTLDLL 
  38.   /dUSEPACKAGES
  39. LFLAGS = -L$(BCB)libobj;$(BCB)lib;d:richviewtemp;$(RELEASELIBPATH) -aa -Tpe -x -Gn -v
  40. IFLAGS =
  41. # ---------------------------------------------------------------------------
  42. ALLOBJ = c0w32.obj sysinit.obj $(OBJFILES)
  43. ALLRES = $(RESFILES)
  44. ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mt.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. [HistoryListshlIncludePath]
  73. Count=1
  74. Item0=$(BCB)include;$(BCB)includevcl;d:richviewtemp
  75. [HistoryListshlLibraryPath]
  76. Count=1
  77. Item0=$(BCB)libobj;$(BCB)lib;d:richviewtemp
  78. [HistoryListshlDebugSourcePath]
  79. Count=1
  80. Item0=$(BCB)sourcevcl
  81. [Debugging]
  82. DebugSourceDirs=$(BCB)sourcevcl
  83. [Parameters]
  84. RunParams=
  85. HostApplication=
  86. !endif
  87. # ---------------------------------------------------------------------------
  88. # MAKE SECTION
  89. # ---------------------------------------------------------------------------
  90. # This section of the project file is not used by the BCB IDE.  It is for
  91. # the benefit of building from the command-line using the MAKE utility.
  92. # ---------------------------------------------------------------------------
  93. .autodepend
  94. # ---------------------------------------------------------------------------
  95. !if !$d(BCC32)
  96. BCC32 = bcc32
  97. !endif
  98. !if !$d(DCC32)
  99. DCC32 = dcc32
  100. !endif
  101. !if !$d(TASM32)
  102. TASM32 = tasm32
  103. !endif
  104. !if !$d(LINKER)
  105. LINKER = ilink32
  106. !endif
  107. !if !$d(BRCC32)
  108. BRCC32 = brcc32
  109. !endif
  110. # ---------------------------------------------------------------------------
  111. !if $d(PATHCPP)
  112. .PATH.CPP = $(PATHCPP)
  113. .PATH.C   = $(PATHCPP)
  114. !endif
  115. !if $d(PATHPAS)
  116. .PATH.PAS = $(PATHPAS)
  117. !endif
  118. !if $d(PATHASM)
  119. .PATH.ASM = $(PATHASM)
  120. !endif
  121. !if $d(PATHRC)
  122. .PATH.RC  = $(PATHRC)
  123. !endif
  124. # ---------------------------------------------------------------------------
  125. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  126.     $(BCB)BIN$(LINKER) @&&!
  127.     $(LFLAGS) +
  128.     $(ALLOBJ), +
  129.     $(PROJECT),, +
  130.     $(ALLLIB), +
  131.     $(DEFFILE), +
  132.     $(ALLRES)
  133. !
  134. # ---------------------------------------------------------------------------
  135. .pas.hpp:
  136.     $(BCB)BIN$(DCC32) $(PFLAGS) {$< }
  137. .pas.obj:
  138.     $(BCB)BIN$(DCC32) $(PFLAGS) {$< }
  139. .cpp.obj:
  140.     $(BCB)BIN$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  141. .c.obj:
  142.     $(BCB)BIN$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  143. .asm.obj:
  144.     $(BCB)BIN$(TASM32) $(AFLAGS) $<, $@
  145. .rc.res:
  146.     $(BCB)BIN$(BRCC32) $(RFLAGS) -fo$@ $<
  147. # ---------------------------------------------------------------------------