DragDropC3.bpk 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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 = DragDropC3.bpl
  15. OBJFILES = DropSource.obj DropURLTarget.obj DropBMPTarget.obj DropPIDLSource.obj \
  16. DropPIDLTarget.obj DropTarget.obj DropURLSource.obj DropBMPSource.obj \
  17. DragDropC3.obj
  18. RESFILES = dragdropC3.res DropSource.dcr DropURLTarget.dcr DropBMPTarget.dcr \
  19. DropPIDLSource.dcr DropPIDLTarget.dcr DropTarget.dcr DropURLSource.dcr \
  20. DropBMPSource.dcr
  21. DEFFILE =
  22. RESDEPEN = $(RESFILES)
  23. LIBFILES =
  24. LIBRARIES =
  25. SPARELIBS = VCL35.lib
  26. PACKAGES = vcl35.bpi
  27. # ---------------------------------------------------------------------------
  28. PATHCPP = .;
  29. PATHASM = .;
  30. PATHPAS = .;
  31. PATHRC = .;
  32. DEBUGLIBPATH = $(BCB)\lib\debug
  33. RELEASELIBPATH = $(BCB)\lib\release
  34. # ---------------------------------------------------------------------------
  35. CFLAG1 = -Od -Hc -w -Ve -r- -k -y -v -vi- -c -b- -w-par -w-inl -Vx
  36. CFLAG2 = -DUSEPACKAGES -I$(BCB)\include;$(BCB)\include\vcl -H=$(BCB)\lib\vcl35.csm
  37. CFLAG3 = -Tkh30000
  38. PFLAGS = -DUSEPACKAGES -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
  39. -I$(BCB)\include;$(BCB)\include\vcl -H -W -$Y -$W -v -JPHN -M
  40. RFLAGS = -DUSEPACKAGES -i$(BCB)\include;$(BCB)\include\vcl
  41. AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /dUSEPACKAGES /mx /w2 /zd
  42. LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) -D"COM Drag/Drop" -aa -Tpp -x -Gn \
  43. -Gl -Gi
  44. IFLAGS =
  45. # ---------------------------------------------------------------------------
  46. ALLOBJ = c0pkg32.obj $(PACKAGES) sysinit.obj $(OBJFILES)
  47. ALLRES = $(RESFILES)
  48. ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mt.lib
  49. # ---------------------------------------------------------------------------
  50. !ifdef IDEOPTIONS
  51. [Version Info]
  52. IncludeVerInfo=1
  53. AutoIncBuild=1
  54. MajorVer=3
  55. MinorVer=4
  56. Release=1
  57. Build=5
  58. Debug=0
  59. PreRelease=0
  60. Special=0
  61. Private=0
  62. DLL=1
  63. Locale=1030
  64. CodePage=1252
  65. [Version Info Keys]
  66. CompanyName=
  67. FileDescription=
  68. FileVersion=3.4.1.5
  69. InternalName=
  70. LegalCopyright=
  71. LegalTrademarks=
  72. OriginalFilename=
  73. ProductName=
  74. ProductVersion=1.0.0.0
  75. Comments=Freeware.
  76. [HistoryLists\hlIncludePath]
  77. Count=1
  78. Item0=$(BCB)\include;$(BCB)\include\vcl
  79. [HistoryLists\hlLibraryPath]
  80. Count=1
  81. Item0=$(BCB)\lib\obj;$(BCB)\lib
  82. [HistoryLists\hlDebugSourcePath]
  83. Count=1
  84. Item0=$(BCB)\source\vcl
  85. [HistoryLists\hlConditionals]
  86. Count=1
  87. Item0=USEPACKAGES
  88. [Debugging]
  89. DebugSourceDirs=$(BCB)\source\vcl
  90. [Parameters]
  91. RunParams=
  92. HostApplication=
  93. !endif
  94. # ---------------------------------------------------------------------------
  95. # MAKE SECTION
  96. # ---------------------------------------------------------------------------
  97. # This section of the project file is not used by the BCB IDE. It is for
  98. # the benefit of building from the command-line using the MAKE utility.
  99. # ---------------------------------------------------------------------------
  100. .autodepend
  101. # ---------------------------------------------------------------------------
  102. !if !$d(BCC32)
  103. BCC32 = bcc32
  104. !endif
  105. !if !$d(DCC32)
  106. DCC32 = dcc32
  107. !endif
  108. !if !$d(TASM32)
  109. TASM32 = tasm32
  110. !endif
  111. !if !$d(LINKER)
  112. LINKER = ilink32
  113. !endif
  114. !if !$d(BRCC32)
  115. BRCC32 = brcc32
  116. !endif
  117. # ---------------------------------------------------------------------------
  118. !if $d(PATHCPP)
  119. .PATH.CPP = $(PATHCPP)
  120. .PATH.C = $(PATHCPP)
  121. !endif
  122. !if $d(PATHPAS)
  123. .PATH.PAS = $(PATHPAS)
  124. !endif
  125. !if $d(PATHASM)
  126. .PATH.ASM = $(PATHASM)
  127. !endif
  128. !if $d(PATHRC)
  129. .PATH.RC = $(PATHRC)
  130. !endif
  131. # ---------------------------------------------------------------------------
  132. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  133. $(BCB)\BIN\$(LINKER) @&&!
  134. $(LFLAGS) +
  135. $(ALLOBJ), +
  136. $(PROJECT),, +
  137. $(ALLLIB), +
  138. $(DEFFILE), +
  139. $(ALLRES)
  140. !
  141. # ---------------------------------------------------------------------------
  142. .pas.hpp:
  143. $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  144. .pas.obj:
  145. $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  146. .cpp.obj:
  147. $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  148. .c.obj:
  149. $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  150. .asm.obj:
  151. $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  152. .rc.res:
  153. $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  154. # ---------------------------------------------------------------------------