#
# Tutor - Make File
#
INCLUDE=\tpw\owl
CC=tpcw /m /V

PGM=Tutor
OBJS = 	$(PGM).pas \
	Jtools.pas \

$(PGM).exe: $(OBJS) $(PGM).res
	$(CC) $(PGM)
  rc -K $(PGM).res $(PGM).exe

$(PGM).res: $(PGM).rc 
     rc -r -I$(INCLUDE) $(PGM).rc

