# Makefile for simple three dimensional renderer

CRender: render.o aif.o
	blink with $*.blink

render.o: 3D.h

aif.o: 3D.h menustrip.h requester.h

# Optimise the code again if you want to run this on single disk machines 
# you will have to say "NorthC:bin/NorthC" rather than just "NorthC" here.

.c.o:
	NorthC -Ot:$*.s $*.c
	top t:$*.s t:$*.s1
	a68k -g -q -O$*.o t:$*.s1
	delete t:$*.s t:$*.s1
