#------------------------------------------------------------------------------
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 = step10.dll Step2LT.rtw Step2aLT.rtw step3LT.rtw step3aLT.rtw \
  Step3D1LT.rtw step3d2LT.rtw step3d3LT.rtw step4LT.rtw step5LT.rtw step6LT.rtw \
  step7LT.rtw step8LT.rtw step9LT.rtw step10LT.rtw step11LT.rtw Step1LT.rtw
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------

step10.dll: step10\step10.dpr
  $(DCC)

Step2LT.rtw: Step2\Step2LT.dpr
  $(DCC)

Step2aLT.rtw: Step2A\Step2aLT.dpr
  $(DCC)

step3LT.rtw: step3\step3LT.dpr
  $(DCC)

step3aLT.rtw: step3a\step3aLT.dpr
  $(DCC)

Step3D1LT.rtw: Step3D1\Step3D1LT.dpr
  $(DCC)

step3d2LT.rtw: Step3D2\step3d2LT.dpr
  $(DCC)

step3d3LT.rtw: step3d3\step3d3LT.dpr
  $(DCC)

step4LT.rtw: step4\step4LT.dpr
  $(DCC)

step5LT.rtw: step5\step5LT.dpr
  $(DCC)

step6LT.rtw: step6\step6LT.dpr
  $(DCC)

step7LT.rtw: step7\step7LT.dpr
  $(DCC)

step8LT.rtw: step8\step8LT.dpr
  $(DCC)

step9LT.rtw: step9\step9LT.dpr
  $(DCC)

step10LT.rtw: step10\step10LT.dpr
  $(DCC)

step11LT.rtw: step11\step11LT.dpr
  $(DCC)

Step1LT.rtw: step1\Step1LT.dpr
  $(DCC)


