home *** CD-ROM | disk | FTP | other *** search
Borland Project Group | 2001-05-01 | 1.2 KB | 43 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_D40.bpl Plot200_R40.bpl Misc200_D40.bpl Misc200_R40.bpl \
- Normal.exe TChart.exe DBPlot200_R40.bpl DBPlot200_D40.bpl
- #------------------------------------------------------------------------------
- default: $(PROJECTS)
- #------------------------------------------------------------------------------
-
- Plot200_D40.bpl: Plot200_D40.dpk
- $(DCC)
-
- Plot200_R40.bpl: Plot200_R40.dpk
- $(DCC)
-
- Misc200_D40.bpl: ..\Misc\Misc200_D40.dpk
- $(DCC)
-
- Misc200_R40.bpl: ..\Misc\Misc200_R40.dpk
- $(DCC)
-
- Normal.exe: Demo\Normal.dpr
- $(DCC)
-
- TChart.exe: TChart Demo\TChart.dpr
- $(DCC)
-
- DBPlot200_R40.bpl: DBPlot200_R40.dpk
- $(DCC)
-
- DBPlot200_D40.bpl: DBPlot200_D40.dpk
- $(DCC)
-
-
-