home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 5 / chat.exe / chat.bpr next >
Text File  |  2000-02-28  |  5KB  |  162 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.03
  15. # ---------------------------------------------------------------------------
  16. PROJECT = chat.exe
  17. OBJFILES = chat.obj main.obj
  18. RESFILES = chat.res
  19. DEFFILE =
  20. RESDEPEN = $(RESFILES) main.dfm
  21. LIBFILES =
  22. LIBRARIES =
  23. SPARELIBS = VCL35.lib inet35.lib
  24. PACKAGES = vclx35.bpi VCL35.bpi vcldb35.bpi vcldbx35.bpi bcbsmp35.bpi dclocx35.bpi \
  25.   Qrpt35.bpi teeui35.bpi VclSmp35.bpi teedb35.bpi tee35.bpi ibsmp35.bpi \
  26.   NMFast35.bpi inetdb35.bpi inet35.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 -tW
  36. CFLAG2 = -D_RTLDLL;USEPACKAGES -I$(BCB)\include;$(BCB)\include\vcl -H=$(BCB)\lib\vcl35.csm
  37. CFLAG3 = -Tkh30000
  38. PFLAGS = -D_RTLDLL;USEPACKAGES \
  39.   -U$(BCB)\projects;$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
  40.   -I$(BCB)\include;$(BCB)\include\vcl -$Y -$W -$O- -v -JPHN -M
  41. RFLAGS = -D_RTLDLL;USEPACKAGES -i$(BCB)\include;$(BCB)\include\vcl
  42. AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /d_RTLDLL /dUSEPACKAGES /mx /w2 /zd
  43. LFLAGS = -L$(BCB)\projects;$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) -aa -Tpe -x -Gn -v
  44. IFLAGS =
  45. # ---------------------------------------------------------------------------
  46. ALLOBJ = c0w32.obj $(PACKAGES) sysinit.obj $(OBJFILES)
  47. ALLRES = $(RESFILES)
  48. ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
  49. # ---------------------------------------------------------------------------
  50. !ifdef IDEOPTIONS
  51.  
  52. [Version Info]
  53. IncludeVerInfo=0
  54. AutoIncBuild=0
  55. MajorVer=1
  56. MinorVer=0
  57. Release=0
  58. Build=0
  59. Debug=0
  60. PreRelease=0
  61. Special=0
  62. Private=0
  63. DLL=0
  64. Locale=1033
  65. CodePage=1252
  66.  
  67. [Version Info Keys]
  68. CompanyName=
  69. FileDescription=
  70. FileVersion=1.0.0.0
  71. InternalName=
  72. LegalCopyright=
  73. LegalTrademarks=
  74. OriginalFilename=
  75. ProductName=
  76. ProductVersion=1.0.0.0
  77. Comments=
  78.  
  79. [Debugging]
  80. DebugSourceDirs=$(BCB)\source\vcl
  81.  
  82. [Parameters]
  83. RunParams=
  84. HostApplication=
  85.  
  86. !endif
  87.  
  88. # ---------------------------------------------------------------------------
  89. # MAKE SECTION
  90. # ---------------------------------------------------------------------------
  91. # This section of the project file is not used by the BCB IDE.  It is for
  92. # the benefit of building from the command-line using the MAKE utility.
  93. # ---------------------------------------------------------------------------
  94.  
  95. .autodepend
  96. # ---------------------------------------------------------------------------
  97. !if !$d(BCC32)
  98. BCC32 = bcc32
  99. !endif
  100.  
  101. !if !$d(DCC32)
  102. DCC32 = dcc32
  103. !endif
  104.  
  105. !if !$d(TASM32)
  106. TASM32 = tasm32
  107. !endif
  108.  
  109. !if !$d(LINKER)
  110. LINKER = ilink32
  111. !endif
  112.  
  113. !if !$d(BRCC32)
  114. BRCC32 = brcc32
  115. !endif
  116. # ---------------------------------------------------------------------------
  117. !if $d(PATHCPP)
  118. .PATH.CPP = $(PATHCPP)
  119. .PATH.C   = $(PATHCPP)
  120. !endif
  121.  
  122. !if $d(PATHPAS)
  123. .PATH.PAS = $(PATHPAS)
  124. !endif
  125.  
  126. !if $d(PATHASM)
  127. .PATH.ASM = $(PATHASM)
  128. !endif
  129.  
  130. !if $d(PATHRC)
  131. .PATH.RC  = $(PATHRC)
  132. !endif
  133. # ---------------------------------------------------------------------------
  134. $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
  135.     $(BCB)\BIN\$(LINKER) @&&!
  136.     $(LFLAGS) +
  137.     $(ALLOBJ), +
  138.     $(PROJECT),, +
  139.     $(ALLLIB), +
  140.     $(DEFFILE), +
  141.     $(ALLRES)
  142. !
  143. # ---------------------------------------------------------------------------
  144. .pas.hpp:
  145.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  146.  
  147. .pas.obj:
  148.     $(BCB)\BIN\$(DCC32) $(PFLAGS) {$< }
  149.  
  150. .cpp.obj:
  151.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  152.  
  153. .c.obj:
  154.     $(BCB)\BIN\$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
  155.  
  156. .asm.obj:
  157.     $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@
  158.  
  159. .rc.res:
  160.     $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $<
  161. # ---------------------------------------------------------------------------
  162.