- # ---------------------------------------------------------------------------
- !if !$d(BCB)
- BCB = $(MAKEDIR)..
- !endif
- # ---------------------------------------------------------------------------
- # IDE SECTION
- # ---------------------------------------------------------------------------
- # The following section of the project makefile is managed by the BCB IDE.
- # It is recommended to use the IDE to change any of the values in this
- # section.
- # ---------------------------------------------------------------------------
- VERSION = BCB.04.04
- # ---------------------------------------------------------------------------
- PROJECT = TreeView.exe
- OBJFILES = TreeView.obj Find.obj URLLabel.obj TreeViewClasses.obj Options.obj
- SavePSAll.obj Splash.obj TreeViewMain.obj treeviewabout.obj LoadingForm.obj
- treeviewhelp.obj SaveNodeForm.obj URLMemo.obj
- RESFILES = TreeView.res
- RESDEPEN = $(RESFILES) Find.dfm Options.dfm SavePSAll.dfm Splash.dfm TreeViewMain.dfm
- treeviewabout.dfm LoadingForm.dfm treeviewhelp.dfm SaveNodeForm.dfm URLMemo.dfm
- LIBFILES =
- LIBRARIES =
- SPARELIBS = Vcl40.lib nmfast40.lib VCLX40.lib Vcldb40.lib
- PACKAGES = Vcl40.bpi Vclx40.bpi vcljpg40.bpi bcbsmp40.bpi Qrpt40.bpi Vcldb40.bpi
- ibsmp40.bpi vcldbx40.bpi TeeUI40.bpi teedb40.bpi tee40.bpi nmfast40.bpi
- dclocx40.bpi
- DEFFILE =
- # ---------------------------------------------------------------------------
- PATHCPP = .;
- PATHASM = .;
- PATHPAS = .;
- PATHRC = .;
- DEBUGLIBPATH = $(BCB)libdebug
- RELEASELIBPATH = $(BCB)librelease
- USERDEFINES =
- SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
- # ---------------------------------------------------------------------------
- CFLAG1 = -I....;..;BplClustering;$(BCB)include;$(BCB)includevcl -O2 -Hc
- -H=$(BCB)libvcl40.csm -w -Ve -a8 -5 -k- -vi -c -b- -w-par -w-inl -Vx -tW -tWM
- -D$(SYSDEFINES);$(USERDEFINES)
- PFLAGS = -U....;..;BplClustering;$(BCB)libobj;$(BCB)lib;$(RELEASELIBPATH)
- -I....;..;BplClustering;$(BCB)include;$(BCB)includevcl -$Y- -$L- -$D- -v
- -JPHNE -M
- RFLAGS = -i....;..;BplClustering;$(BCB)include;$(BCB)includevcl
- AFLAGS = /i.... /i.. /iBplClustering /i$(BCB)include /i$(BCB)includevcl /mx /w2 /zn
- LFLAGS = -L....;..;BplClustering;$(BCB)libobj;$(BCB)lib;$(RELEASELIBPATH)
- -H:0x1000000 -S:0x1000000 -aa -Tpe -x -Gn
- # ---------------------------------------------------------------------------
- ALLOBJ = c0w32.obj Memmgr.Lib $(PACKAGES) sysinit.obj $(OBJFILES)
- ALLRES = $(RESFILES)
- ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
- # ---------------------------------------------------------------------------
- !ifdef IDEOPTIONS
- [Version Info]
- IncludeVerInfo=0
- AutoIncBuild=0
- MajorVer=1
- MinorVer=0
- Release=0
- Build=0
- Debug=0
- PreRelease=0
- Special=0
- Private=0
- DLL=0
- Locale=1033
- CodePage=1252
- [Version Info Keys]
- CompanyName=
- FileDescription=
- FileVersion=1.0.0.0
- InternalName=
- LegalCopyright=
- LegalTrademarks=
- OriginalFilename=
- ProductName=
- ProductVersion=1.0.0.0
- Comments=
- [HistoryListshlIncludePath]
- Count=1
- Item0=....;..;BplClustering;$(BCB)include;$(BCB)includevcl
- [HistoryListshlLibraryPath]
- Count=1
- Item0=....;..;BplClustering;$(BCB)libobj;$(BCB)lib
- [HistoryListshlDebugSourcePath]
- Count=1
- Item0=$(BCB)sourcevcl
- [Debugging]
- DebugSourceDirs=$(BCB)sourcevcl
- [Parameters]
- RunParams=
- HostApplication=
- RemoteHost=
- RemotePath=
- RemoteDebug=0
- [Compiler]
- InMemoryExe=0
- ShowInfoMsgs=0
- !endif
- # ---------------------------------------------------------------------------
- # MAKE SECTION
- # ---------------------------------------------------------------------------
- # This section of the project file is not used by the BCB IDE. It is for
- # the benefit of building from the command-line using the MAKE utility.
- # ---------------------------------------------------------------------------
- .autodepend
- # ---------------------------------------------------------------------------
- !if !$d(BCC32)
- BCC32 = bcc32
- !endif
- !if !$d(CPP32)
- CPP32 = cpp32
- !endif
- !if !$d(DCC32)
- DCC32 = dcc32
- !endif
- !if !$d(TASM32)
- TASM32 = tasm32
- !endif
- !if !$d(LINKER)
- LINKER = ilink32
- !endif
- !if !$d(BRCC32)
- BRCC32 = brcc32
- !endif
- # ---------------------------------------------------------------------------
- !if $d(PATHCPP)
- .PATH.CPP = $(PATHCPP)
- .PATH.C = $(PATHCPP)
- !endif
- !if $d(PATHPAS)
- .PATH.PAS = $(PATHPAS)
- !endif
- !if $d(PATHASM)
- .PATH.ASM = $(PATHASM)
- !endif
- !if $d(PATHRC)
- .PATH.RC = $(PATHRC)
- !endif
- # ---------------------------------------------------------------------------
- $(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
- $(BCB)BIN$(LINKER) @&&!
- $(LFLAGS) +
- $(ALLOBJ), +
- $(PROJECT),, +
- $(ALLLIB), +
- $(DEFFILE), +
- $(ALLRES)
- !
- # ---------------------------------------------------------------------------
- .pas.hpp:
- $(BCB)BIN$(DCC32) $(PFLAGS) {$< }
- .pas.obj:
- $(BCB)BIN$(DCC32) $(PFLAGS) {$< }
- .cpp.obj:
- $(BCB)BIN$(BCC32) $(CFLAG1) -n$(@D) {$< }
- .c.obj:
- $(BCB)BIN$(BCC32) $(CFLAG1) -n$(@D) {$< }
- .c.i:
- $(BCB)BIN$(CPP32) $(CFLAG1) -n. {$< }
- .cpp.i:
- $(BCB)BIN$(CPP32) $(CFLAG1) -n. {$< }
- .asm.obj:
- $(BCB)BIN$(TASM32) $(AFLAGS) $<, $@
- .rc.res:
- $(BCB)BIN$(BRCC32) $(RFLAGS) -fo$@ $<
- # ---------------------------------------------------------------------------