
all: tiny_pong.prg 

tiny_pong.prg: tiny_pong.c
	cl65 -Osir --static-locals -o tiny_pong.prg tiny_pong.c
#	cl65 -o tiny_pong.prg tiny_pong.c
	
clean:
	$(RM) tiny_pong.prg
	
test: tiny_pong.prg
	x64sc -autostartprgmode 1 tiny_pong.prg
