#******************************************************************************
#
# Filename:	scc6502/tests/Makefile
#
# Description:	
#
# Update History:   (most recent first)
#     I. Curtis  18-Jun-97 20:57 -- Created.
#
#******************************************************************************
.PRECIOUS: %.s %.i %.o

crt0.o : crt0.S
	luna -Oq -o crt0.o crt0.S

%.s : %.c ../scc6502
	../scc6502 $*.c


%.o : %.s
	luna -Oq -o $@ $*.s
	
%.exe : %.o crt0.o stdio.o
	lld -o $*.exe crt0.o $*.o stdio.o
