37 lines
1000 B
Plaintext
37 lines
1000 B
Plaintext
#------------------------------------------------------------------------------
|
|
VERSION = BWS.01
|
|
#------------------------------------------------------------------------------
|
|
!ifndef ROOT
|
|
ROOT = $(MAKEDIR)\..
|
|
!endif
|
|
#------------------------------------------------------------------------------
|
|
MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
|
|
DCC = $(ROOT)\bin\dcc32.exe $**
|
|
BRCC = $(ROOT)\bin\brcc32.exe $**
|
|
#------------------------------------------------------------------------------
|
|
PROJECTS = ZCore.bpl ZParseSql.bpl ZPlain.bpl ZDbc.bpl ZComponent.bpl \
|
|
ZComponentDesign70.bpl
|
|
#------------------------------------------------------------------------------
|
|
default: $(PROJECTS)
|
|
#------------------------------------------------------------------------------
|
|
|
|
ZCore.bpl: ZCore.dpk
|
|
$(DCC)
|
|
|
|
ZParseSql.bpl: ZParseSql.dpk
|
|
$(DCC)
|
|
|
|
ZPlain.bpl: ZPlain.dpk
|
|
$(DCC)
|
|
|
|
ZDbc.bpl: ZDbc.dpk
|
|
$(DCC)
|
|
|
|
ZComponent.bpl: ZComponent.dpk
|
|
$(DCC)
|
|
|
|
ZComponentDesign70.bpl: ZComponentDesign.dpk
|
|
$(DCC)
|
|
|
|
|