#------------------------------------------------------------------------------
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 = Step2LT.rtw STEP2aLT.rtw Step3LT.rtw Step3aLT.rtw Step4LT.rtw \
  Step5LT.rtw Step6LT.rtw Step7LT.rtw Step8LT.rtw Step9LT.rtw Step10LT.rtw \
  Step11LT.rtw STEP1LT.rtw
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------


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

STEP2aLT.rtw: step2a\STEP2aLT.dpr
  $(DCC)

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

Step3aLT.rtw: step3a\Step3aLT.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)


