1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#------------------------------------------------------------------------------
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 = dxgettext.exe ggdxgettext.exe MySQLLibInterfaceMapper.exe EmbeddedWBPackage.bpl png.bpl \
TntUnicodeVcl_R70.bpl TntUnicodeVcl_D70.bpl UniCodeEditorD7.bpl VirtualTreesD7.bpl VirtualTreesD7D.bpl Tools.bpl \
GenericCanvasD7.bpl GenericCanvasD7D.bpl VirtualExplorerListviewExD7.bpl VirtualExplorerListviewExD7D.bpl \
VirtualShellToolsD7.bpl VirtualShellToolsD7D.bpl
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
ggdxgettext.exe: ..\dxgettext\ggdxgettext.dpr
$(DCC)
dxgettext.exe: ..\dxgettext\dxgettext.dpr
$(DCC)
MySQLLibInterfaceMapper.exe: ..\LibInterfaceMapper\MySQLLibInterfaceMapper.dpr
$(DCC)
EmbeddedWBPackage.bpl: ..\embeddedwb\EmbeddedWBPackage.dpk
$(DCC)
png.bpl: ..\png\png.dpk
$(DCC)
TntUnicodeVcl_D70.bpl: ..\TNT\Packages\TntUnicodeVcl_D70.dpk
$(DCC)
TntUnicodeVcl_R70.bpl: ..\TNT\Packages\TntUnicodeVcl_R70.dpk
$(DCC)
Tools.bpl: ..\tools\Tools.dpk
$(DCC)
UniCodeEditorD7.bpl: ..\UniCodeEditor\Delphi\UniCodeEditorD7.dpk
$(DCC)
VirtualTreesD7.bpl: ..\VirtualTreeview\Delphi\VirtualTreesD7.dpk
$(DCC)
VirtualTreesD7D.bpl: ..\VirtualTreeview\Delphi\VirtualTreesD7D.dpk
$(DCC)
GenericCanvasD7.bpl: ..\GenericCanvas\GenericCanvasD7.dpk
$(DCC)
GenericCanvasD7D.bpl: ..\GenericCanvas\GenericCanvasD7D.dpk
$(DCC)
VirtualExplorerListviewExD7.bpl: ..\VSTools\Delphi\VirtualExplorerListviewExD7.dpk
$(DCC)
VirtualExplorerListviewExD7D.bpl: ..\VSTools\Delphi\VirtualExplorerListviewExD7D.dpk
$(DCC)
VirtualShellToolsD7.bpl: ..\VSTools\Delphi\VirtualShellToolsD7.dpk
$(DCC)
VirtualShellToolsD7D.bpl: ..\VSTools\Delphi\VirtualShellToolsD7D.dpk
$(DCC)
|