- # ---------------------------------------------------------------------------
- !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 = RVEditCB4.exe
- OBJFILES = RVEditCB4.obj CPFrm.obj ListFrm.obj PreviewFrm.obj PropFrm.obj RVUndoStr.obj
- Unit1.obj OptionsFrm.obj
- RESFILES = RVEditCB4.res
- DEFFILE =
- RESDEPEN = $(RESFILES) CPFrm.dfm ListFrm.dfm PreviewFrm.dfm PropFrm.dfm Unit1.dfm
- OptionsFrm.dfm
- LIBFILES =
- LIBRARIES = VCLJPG40.lib vcl40.lib
- SPARELIBS = vcl40.lib VCLJPG40.lib
- PACKAGES =
- # ---------------------------------------------------------------------------
- PATHCPP = .;
- PATHASM = .;
- PATHPAS = .;
- PATHRC = .;
- DEBUGLIBPATH = $(BCB)libdebug
- RELEASELIBPATH = $(BCB)librelease
- SYSDEFINES = NO_STRICT;_RTLDLL
- USERDEFINES =
- # ---------------------------------------------------------------------------
- CFLAG1 = -I$(BCB)include;$(BCB)includevcl;d:richviewtemp -Od -Hc
- -H=$(BCB)libvcl40.csm -w -Ve -Tkh30000 -r- -a8 -k -y -v -vi-
- -D$(SYSDEFINES);$(USERDEFINES) -c -b- -w-par -w-inl -Vx -tW -tWM
- CFLAG2 =
- CFLAG3 =
- PFLAGS = -U$(BCB)libobj;$(BCB)lib;d:richviewtemp;$(RELEASELIBPATH)
- -I$(BCB)include;$(BCB)includevcl;d:richviewtemp -$YD -$W -$O- -v -M -JPHNE
- RFLAGS = -i$(BCB)include;$(BCB)includevcl;d:richviewtemp
- AFLAGS = /i$(BCB)include /i$(BCB)includevcl /id:richviewtemp /mx /w2 /zd /d_RTLDLL
- LFLAGS = -L$(BCB)libobj;$(BCB)lib;d:richviewtemp;$(RELEASELIBPATH) -aa -Tpe -x -Gn -v
- IFLAGS =
- # ---------------------------------------------------------------------------
- ALLOBJ = c0w32.obj Memmgr.Lib 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=1049
- CodePage=1251
- [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=$(BCB)include;$(BCB)includevcl;d:richviewtemp
- [HistoryListshlLibraryPath]
- Count=1
- Item0=$(BCB)libobj;$(BCB)lib;d:richviewtemp
- [HistoryListshlDebugSourcePath]
- Count=1
- Item0=$(BCB)sourcevcl
- [HistoryListshlConditionals]
- Count=2
- Item0=_RTLDLL
- Item1=_RTLDLL;USEPACKAGES
- [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(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) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
- .c.obj:
- $(BCB)BIN$(BCC32) $(CFLAG1) $(CFLAG2) $(CFLAG3) -n$(@D) {$< }
- .asm.obj:
- $(BCB)BIN$(TASM32) $(AFLAGS) $<, $@
- .rc.res:
- $(BCB)BIN$(BRCC32) $(RFLAGS) -fo$@ $<
- # ---------------------------------------------------------------------------