# Beispiel-Makefile fr DigiTape Module
# Letzte nderung: 1.7.93

OBJECTS = hall.r HALL.D

xyz.x : $(OBJECTS)
	$(RM) xyz.x

# aus RSC-File C-Source File HALL.R  erzeugen
hall.r : hall.rsc
	\dt_modul\rsc_to_c.ttp $*.rsc

# aus DSP56000 Assembler Source File C-Source File
# HALL.D und Define File HALL.DH erzeugen
HALL.D : HALL.CLN
	\dt_modul\cln_to_d.ttp $*
HALL.CLN : HALL.ASM
	\dt_modul\asm56000.ttp -b \dt_modul\example\$*.ASM

