# vim: fileencoding=utf-8: ts=4: sw=4: noexpandtab:

all: col80.prg

%.o: %.s
	ca65 -t none -o $@ $<

%.prg: %.o
	ld65 -t none -o $@ $<
	@ls -la $@
	@# hd $@

clean:
	-rm -f *.o *.hex *.prg
