aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7af560a..fb969a8 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ PERL = perl
all: dla.xex
-dla.xex: dla.s io.s dlatbl.s xex.inc
+dla.xex: dla.s io.s dlatbl.s xex.inc printint.s
$(CL65) $(CL65FLAGS) -l dla.list -Ln dla.labels -t none -o dla.xex dla.s
dlatbl.s: mkdlatbl.pl
@@ -15,3 +15,6 @@ clean:
test: all
atari800 -turbo dla.xex
+
+%.xex: %.s
+ $(CL65) $(CL65FLAGS) -t none -o $@ $<