home *** CD-ROM | disk | FTP | other *** search
Borland Project Group | 2001-05-18 | 1.3 KB | 50 lines |
- #------------------------------------------------------------------------------
- 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 = Plot200_D50.bpl Plot200_R50.bpl Misc200_D50.bpl Misc200_R50.bpl \
- Normal.exe TChart.exe DBPlot200_R50.bpl DBPlot200_D50.bpl DBNormal.exe \
- PlotXControl.ocx
- #------------------------------------------------------------------------------
- default: $(PROJECTS)
- #------------------------------------------------------------------------------
-
- Plot200_D50.bpl: Plot200_D50.dpk
- $(DCC)
-
- Plot200_R50.bpl: Plot200_R50.dpk
- $(DCC)
-
- Misc200_D50.bpl: ..\Misc\Misc200_D50.dpk
- $(DCC)
-
- Misc200_R50.bpl: ..\Misc\Misc200_R50.dpk
- $(DCC)
-
- Normal.exe: Demo\Normal.dpr
- $(DCC)
-
- TChart.exe: TChart Demo\TChart.dpr
- $(DCC)
-
- DBPlot200_R50.bpl: DBPlot200_R50.dpk
- $(DCC)
-
- DBPlot200_D50.bpl: DBPlot200_D50.dpk
- $(DCC)
-
- DBNormal.exe: DBDemo\DBNormal.dpr
- $(DCC)
-
- PlotXControl.ocx: ActiveX\PlotXControl.dpr
- $(DCC)
-
-
-