# SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
# For more information, please refer to <https://unlicense.org/>
# SPDX-License-Identifier: Unlicense

hello.prg: hello.c
	cl65 -t c64 hello.c -o hello.prg

clean:
	rm -f *.o hello.prg
