home *** CD-ROM | disk | FTP | other *** search
- # ---------------------------------------------------------------------------
- !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 = CoolDBUtilities.bpl
- OBJFILES = CoolDBUtils.obj CoolDBUtilsReg.obj CoolDBUtilities.obj
- RESFILES = CoolDBUtilities.res CoolDBUtilsReg.dcr
- RESDEPEN = $(RESFILES)
- LIBFILES =
- IDLFILES =
- IDLGENFILES =
- LIBRARIES =
- SPARELIBS = VCL40.lib
- PACKAGES = vcl40.bpi vcldb40.bpi vclx40.bpi
- DEFFILE =
- # ---------------------------------------------------------------------------
- PATHCPP = .;
- PATHASM = .;
- PATHPAS = .;
- PATHRC = .;
- DEBUGLIBPATH = $(BCB)\lib\debug
- RELEASELIBPATH = $(BCB)\lib\release
- USERDEFINES =
- SYSDEFINES = _RTLDLL;NO_STRICT;USEPACKAGES
- # ---------------------------------------------------------------------------
- CFLAG1 = -I$(BCB)\include;$(BCB)\include\vcl -Od -Hc -H=$(BCB)\lib\vcl40.csm -w -Ve -r- \
- -a8 -k -y -v -vi- -c -b- -w-par -w-inl -Vx -tWM -D$(SYSDEFINES);$(USERDEFINES)
- IDLCFLAGS = -I$(BCB)\include -I$(BCB)\include\vcl -src_suffixcpp
- PFLAGS = -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
- -I$(BCB)\include;$(BCB)\include\vcl -$YD -$W -$O- -v -JPHNE -M
- RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl
- AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zd
- LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) -DCoolDBUtilities -aa -Tpp -Gpd \
- -x -Gn -Gl -Gi -v
- # ---------------------------------------------------------------------------
- ALLOBJ = c0pkg32.obj Memmgr.Lib $(PACKAGES) sysinit.obj $(OBJFILES)
- ALLRES = $(RESFILES)
- ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mti.lib
- # ---------------------------------------------------------------------------
- !ifdef IDEOPTIONS
-
- [Version Info]
- IncludeVerInfo=1
- AutoIncBuild=0
- MajorVer=1
- MinorVer=0
- Release=0
- Build=0
- Debug=0
- PreRelease=0
- Special=0
- Private=0
- DLL=0
- Locale=1049
- CodePage=1251
-
- [Version Info Keys]
- CompanyName=
- FileDescription=
- FileVersion=1.0.0.0
- InternalName=
- LegalCopyright=
- LegalTrademarks=
- OriginalFilename=
- ProductName=
- ProductVersion=1.0.0.0
- Comments=
-
- [Excluded Packages]
- $(BCB)\Projects\Bpl\CoolControls.bpl=CoolControls
- $(BCB)\Projects\Bpl\TipsSystem.bpl=Tips system
-
- [Debugging]
- DebugSourceDirs=$(BCB)\source\vcl
-
- [Parameters]
- RunParams=
- HostApplication=
- RemoteHost=
- RemotePath=
- RemoteDebug=0
-
- [Compiler]
- InMemoryExe=0
- ShowInfoMsgs=0
-
- [CORBA]
- AddServerUnit=1
- AddClientUnit=1
- PrecompiledHeaders=1
-
- !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(IDL2CPP)
- IDL2CPP = idl2cpp
- !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): $(IDLGENFILES) $(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$@ $<
- # ---------------------------------------------------------------------------
-