
AS	= cc -c -DACK



$f.o:	$f.s
	$(AS) $f.s

all:
	$(AS) *.s


clean:
	rm -f *.o
