.SUFFIXES:	.c .rel

RELS =\
	sqrt.rel

.c.rel:
	scc8080 $*.c
	echo `pwd`"/"$*.rel >> ../libc.lib

all:	$(RELS)

clean:
	rm -f *.rel *.s *.ihx *.map *.lib
