#Makefile for the fortune program

fortune: fortune.o
	blink with $*.blink

# Special version of .c.o for those that have only a single disk.
#
#.c.o:
#	NorthC:bin/NorthC -Ot:$*.s $*.c
#	NorthC:bin/A68K -g -q -o$*.o t:$*.s
#	delete t:$*.s
#
# But for the rest of us 

.c.o:
	NorthC -Ot:$*.s $*.c
	A68K -g -q -o$*.o t:$*.s
	delete t:$*.s
