# --------------------------------------------------------------------------- !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 = olb2sword.exe OBJFILES = olb2sword.obj ..\src\keys\listkey.obj ..\src\keys\strkey.obj \ ..\src\keys\swkey.obj ..\src\keys\versekey.obj ..\src\utilfuns\utilstr.obj \ all.obj RESFILES = RESDEPEN = $(RESFILES) LIBFILES = IDLFILES = IDLGENFILES = LIBRARIES = SPARELIBS = PACKAGES = Vcl40.bpi Vclx40.bpi bcbsmp40.bpi Dss40.bpi Qrpt40.bpi TeeUI40.bpi teedb40.bpi \ tee40.bpi Vcldb40.bpi vcldbx40.bpi ibsmp40.bpi Vclmid40.bpi NMFast40.bpi \ Inetdb40.bpi Inet40.bpi dclocx40.bpi dclusr40.bpi DEFFILE = # --------------------------------------------------------------------------- PATHCPP = .;..\src\keys;..\src\utilfuns PATHASM = .; PATHPAS = .; PATHRC = .; DEBUGLIBPATH = $(BCB)\lib\debug RELEASELIBPATH = $(BCB)\lib\release SYSDEFINES = _NO_VCL USERDEFINES = # --------------------------------------------------------------------------- CFLAG1 = -I..\src\utilfuns;..\src\keys;$(BCB)\include;..\include -Od -Tkh30000 -r- -a1 \ -k -y -v -vi- -c -tWM -tWC -D$(SYSDEFINES);$(USERDEFINES) IDLCFLAGS = -I..\src\utilfuns -I..\src\keys -I$(BCB)\include -I..\include -src_suffixcpp PFLAGS = -U..\src\utilfuns;..\src\keys;$(BCB)\lib;$(DEBUGLIBPATH) \ -I..\src\utilfuns;..\src\keys;$(BCB)\include;..\include -$YD -$W -$O- -v -JPHN -M RFLAGS = -i..\src\utilfuns;..\src\keys;$(BCB)\include;..\include AFLAGS = /i..\src\utilfuns /i..\src\keys /i$(BCB)\include /i..\include /mx /w2 /zd LFLAGS = -L..\src\utilfuns;..\src\keys;$(BCB)\lib;$(DEBUGLIBPATH) -ap -Tpe -x -Gn -v # --------------------------------------------------------------------------- ALLOBJ = c0x32.obj $(OBJFILES) ALLRES = $(RESFILES) ALLLIB = $(LIBFILES) import32.lib cw32mt.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=Executable (Console) FileVersion=1.0.0.0 InternalName= LegalCopyright= LegalTrademarks= OriginalFilename= ProductName= ProductVersion=1.0.0.0 Comments= [HistoryLists\hlIncludePath] Count=2 Item0=..\src\utilfuns;..\src\keys;$(BCB)\include;..\include Item1=$(BCB)\include;../include [HistoryLists\hlLibraryPath] Count=2 Item0=..\src\utilfuns;..\src\keys;$(BCB)\lib Item1=$(BCB)\lib [HistoryLists\hlRunParameters] Count=2 Item0=c:\bible\wey\ Item1=c:\bible\wey[Debugging] [Debugging] DebugSourceDirs= [Parameters] RunParams=c:\bible\wey\ 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(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) {$< } .asm.obj: $(BCB)\BIN\$(TASM32) $(AFLAGS) $<, $@ .rc.res: $(BCB)\BIN\$(BRCC32) $(RFLAGS) -fo$@ $< # ---------------------------------------------------------------------------