# I06PROJ - BCD sprite numerals, w/interrupt driven RTC
# See Foenix Rising Issue #6 (F6), for a description

64TASS	?= 64tass

# Default target.
# Builds and load at $E000

always: i06proj.bin

clean:
	rm -f bin/*.bin
	
deepclean: clean
	find . -name "*~" -exec rm {} \;
	find . -name "*#" -exec rm {} \;


COPT = -I . -C -Wall -Werror -Wno-shadow -x --verbose-list

SOURCE	= \
	i06proj.asm \
#	TinyVicky_Def.asm \

i06proj.bin: Makefile $(SOURCE)
	@echo Building
	64tass $(COPT) $(filter %.asm, $^) -b -L $(basename $@).lst -o $@
	@echo

