123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- # ---------------------------------------------------------------------------
- !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.03
- # ---------------------------------------------------------------------------
- PROJECT = MngView.exe
- OBJFILES = MngView.obj Main.obj
- RESFILES = MngView.res
- DEFFILE =
- RESDEPEN = $(RESFILES) Main.dfm
- LIBFILES = ..\win32dll\libmng.lib
- LIBRARIES = VCL35.lib
- SPARELIBS = VCL35.lib
- PACKAGES = VCLX35.bpi VCL35.bpi VCLDB35.bpi VCLDBX35.bpi bcbsmp35.bpi dclocx35.bpi \
- QRPT35.bpi
- # ---------------------------------------------------------------------------
- PATHCPP = .;
- PATHASM = .;
- PATHPAS = .;
- PATHRC = .;
- DEBUGLIBPATH = $(BCB)\lib\debug
- RELEASELIBPATH = $(BCB)\lib\release
- # ---------------------------------------------------------------------------
- CFLAG1 = -Od -w -Ve -r- -k -y -v -vi- -c -b- -w-par -w-inl -Vx -tW
- CFLAG2 = -I$(BCB)\include;$(BCB)\include\vcl;..\..;..\..\..\zlib;..\..\..\jpgsrc6b
- CFLAG3 = -Tkh30000 -6
- PFLAGS = -U$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) \
- -I$(BCB)\include;$(BCB)\include\vcl;..\..;..\..\..\zlib;..\..\..\jpgsrc6b -$Y \
- -$W -$O- -v -JPHN -M
- RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl;..\..;..\..\..\zlib;..\..\..\jpgsrc6b
- AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /i..\.. /i..\..\..\zlib \
- /i..\..\..\jpgsrc6b /mx /w2 /zd /dMNG_USE_DLL
- LFLAGS = -L$(BCB)\lib\obj;$(BCB)\lib;$(RELEASELIBPATH) -aa -Tpe -x -Gn
- IFLAGS =
- # ---------------------------------------------------------------------------
- ALLOBJ = c0w32.obj sysinit.obj $(OBJFILES)
- ALLRES = $(RESFILES)
- ALLLIB = $(LIBFILES) $(LIBRARIES) import32.lib cp32mt.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=2057
- CodePage=1252
- [Version Info Keys]
- CompanyName=
- FileDescription=
- FileVersion=1.0.0.0
- InternalName=
- LegalCopyright=
- LegalTrademarks=
- OriginalFilename=
- ProductName=
- ProductVersion=1.0.0.0
- Comments=
- [HistoryLists\hlIncludePath]
- Count=8
- Item0=$(BCB)\include;$(BCB)\include\vcl;..\..;..\..\..\zlib;..\..\..\jpgsrc6b
- Item1=$(BCB)\include;$(BCB)\include\vcl;..\..;..\..\..\zlib;..\..\..\jpgsrc6b;..\win32dll
- Item2=$(BCB)\include;$(BCB)\include\vcl;..\..;..\..\..\zlib;..\..\..\ijgsrc6b
- Item3=$(BCB)\include;$(BCB)\include\vcl;..\..;..\..\..\zlib;..\..\..\libjpeg
- Item4=$(BCB)\include;$(BCB)\include\vcl;..\..;..\..\zlib
- Item5=$(BCB)\include;$(BCB)\include\vcl;..\..
- Item6=$(BCB)\include;$(BCB)\include\vcl
- Item7=..\..\delphi;$(BCB)\include;$(BCB)\include\vcl
- [HistoryLists\hlLibraryPath]
- Count=2
- Item0=$(BCB)\lib\obj;$(BCB)\lib
- Item1=..\..\delphi;$(BCB)\lib\obj;$(BCB)\lib
- [HistoryLists\hlDebugSourcePath]
- Count=1
- Item0=$(BCB)\source\vcl
- [HistoryLists\hlConditionals]
- Count=3
- Item0=MNG_USE_DLL
- Item1=_RTLDLL
- Item2=_RTLDLL;USEPACKAGES
- [Debugging]
- DebugSourceDirs=$(BCB)\source\vcl
- [Parameters]
- RunParams=
- HostApplication=
- !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$@ $<
- # ---------------------------------------------------------------------------
|