You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
226 lines
5.2 KiB
226 lines
5.2 KiB
14 years ago
|
# ---------------------------------------------------------------------------
|
||
|
!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 = zlib.lib
|
||
|
OBJFILES = zlib.obj adler32.obj compress.obj crc32.obj deflate.obj gzio.obj infblock.obj \
|
||
|
infcodes.obj inffast.obj inflate.obj inftrees.obj infutil.obj trees.obj \
|
||
|
uncompr.obj zutil.obj
|
||
|
RESFILES =
|
||
|
RESDEPEN = $(RESFILES)
|
||
|
LIBFILES =
|
||
|
LIBRARIES = VCL35.lib
|
||
|
SPARELIBS = VCL35.lib
|
||
|
DEFFILE =
|
||
|
PACKAGES = VCLX35.bpi VCL35.bpi VCLDB35.bpi VCLDBX35.bpi ibsmp35.bpi bcbsmp35.bpi \
|
||
|
dclocx35.bpi QRPT35.bpi TEEUI35.bpi TEEDB35.bpi TEE35.bpi DSS35.bpi \
|
||
|
NMFAST35.bpi INETDB35.bpi INET35.bpi VCLMID35.bpi
|
||
|
# ---------------------------------------------------------------------------
|
||
|
PATHCPP = .;
|
||
|
PATHASM = .;
|
||
|
PATHPAS = .;
|
||
|
PATHRC = .;
|
||
|
DEBUGLIBPATH = $(BCB)\lib\debug
|
||
|
RELEASELIBPATH = $(BCB)\lib\release
|
||
|
# ---------------------------------------------------------------------------
|
||
|
CFLAG1 = -O2 -Ve -d -k- -vi
|
||
|
CFLAG2 = -I$(BCB)\include;$(BCB)\include\vcl -H=$(BCB)\lib\vcl35.csm
|
||
|
CFLAG3 = -ff -5
|
||
|
PFLAGS = -U;$(DEBUGLIBPATH) -I$(BCB)\include;$(BCB)\include\vcl -H -W -$I- -v -JPHN -M
|
||
|
RFLAGS = -i$(BCB)\include;$(BCB)\include\vcl
|
||
|
AFLAGS = /i$(BCB)\include /i$(BCB)\include\vcl /mx /w2 /zn
|
||
|
LFLAGS =
|
||
|
IFLAGS = -g -Gn
|
||
|
# ---------------------------------------------------------------------------
|
||
|
ALLOBJ = c0w32.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=1040
|
||
|
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=2
|
||
|
Item0=$(BCB)\include
|
||
|
Item1=$(BCB)\include;$(BCB)\include\vcl
|
||
|
|
||
|
[HistoryLists\hlLibraryPath]
|
||
|
Count=1
|
||
|
Item0=$(BCB)\lib\obj;$(BCB)\lib
|
||
|
|
||
|
[HistoryLists\hlDebugSourcePath]
|
||
|
Count=1
|
||
|
Item0=$(BCB)\source\vcl
|
||
|
|
||
|
[Debugging]
|
||
|
DebugSourceDirs=
|
||
|
|
||
|
[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 = TLib
|
||
|
!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
|
||
|
# ---------------------------------------------------------------------------
|
||
|
!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=1040
|
||
|
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=2
|
||
|
Item0=$(BCB)\include;$(BCB)\include\vcl
|
||
|
Item1=$(BCB)\include
|
||
|
|
||
|
[HistoryLists\hlLibraryPath]
|
||
|
Count=1
|
||
|
Item0=$(BCB)\lib\obj;$(BCB)\lib
|
||
|
|
||
|
[HistoryLists\hlDebugSourcePath]
|
||
|
Count=1
|
||
|
Item0=$(BCB)\source\vcl
|
||
|
|
||
|
[Debugging]
|
||
|
DebugSourceDirs=
|
||
|
|
||
|
[Parameters]
|
||
|
RunParams=
|
||
|
HostApplication=
|
||
|
|
||
|
!endif
|
||
|
|
||
|
$(PROJECT): $(OBJFILES) $(RESDEPEN) $(DEFFILE)
|
||
|
$(BCB)\BIN\$(LINKER) @&&!
|
||
|
$(LFLAGS) $(IFLAGS) +
|
||
|
$(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$@ $<
|
||
|
# ---------------------------------------------------------------------------
|