aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 802a2bd..a1f119f 100644
--- a/Makefile
+++ b/Makefile
@@ -24,6 +24,12 @@ dla2csv: dla2csv.c
$(CC) $(CFLAGS) -o dla2csv dla2csv.c \
|| echo "Couldn't build host dla2csv; continuing without it"
+disk: drive1.atr
+
+drive1.atr: all
+ axe -w dla.xex drive1.atr
+ axe -w dla2csv.xex drive1.atr
+
clean:
rm -f dla.xex dla2csv dla2csv.xex dla.list dla.labels *.o
@@ -33,6 +39,9 @@ distclean: clean
test: all
atari800 dla.xex
+disktest: disk
+ atari800 drive1.atr
+
%.xex: %.s
$(CL65) $(CL65FLAGS) -t none -o $@ $<