# Aztec 5.0a compiler options

all:	rm2

CFLAGS=-mc -md -su

rm2:	rm2.o testpoint.o
	ln rm2.o testpoint.o -lm8 -lcl

test:	rm2
	rm2 /r -.8 /i .75 /w .4 /h

rm2.o:	rm2.c
	cc -so rm2.c -o rm2.o -mc -md -su -f8 -so -c2

testpoint.o:	testpoint.asm
	as -o testpoint.o -l -v testpoint.asm

