CFILES	= testit.c
AFILES  = testit_a.asm
TEST = 
COPTS = DBG=F
LINKERLIBS= v$(VERSION):lib/amiga.lib v$(VERSION):lib/debug.lib

testit: testit.o testit_a.o /SpecialFX.h $(TEST)
	slink from lib:c.o testit.o testit_a.o $(TEST) to testit lib lib:sc.lib $(LINKERLIBS) ADDSYM
	copy testit pram:


.c.o:
	sc $(COPTS) $*

.asm.o:
	hx68 -a $*.asm -o$*.o -s

testit.o:	testit.c /specialfxbase.h

testit_a.o:	testit_a.asm
