From 0ce40f8d4e3ded5b6f80a810d33eae532d84c634 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 24 Oct 2022 03:35:32 -0400 Subject: initial commit (v0.0.3) --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7af560a --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +CL65 = cl65 +CL65FLAGS = +PERL = perl + +all: dla.xex + +dla.xex: dla.s io.s dlatbl.s xex.inc + $(CL65) $(CL65FLAGS) -l dla.list -Ln dla.labels -t none -o dla.xex dla.s + +dlatbl.s: mkdlatbl.pl + $(PERL) mkdlatbl.pl > dlatbl.s + +clean: + rm -f dla.xex dlatbl.s dla.list dla.labels *.o + +test: all + atari800 -turbo dla.xex -- cgit v1.2.3