# Makefile for disass from Martin Combs

disass: disass.o
	blink with $*.blink

# Use the optimiser it not only makes the code smaller it also puts the
# text at the front
.c.o:
	NorthC -Ot:$*.s $*.c
	top t:$*.s t:$*.s1
	a68k -g -q -O$*.o t:$*.s1
	delete t:$*.s t:$*.s1

	
