aboutsummaryrefslogtreecommitdiff
path: root/src/example/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/example/Makefile')
-rw-r--r--src/example/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/example/Makefile b/src/example/Makefile
index 282cd6d..13d24bb 100644
--- a/src/example/Makefile
+++ b/src/example/Makefile
@@ -20,7 +20,7 @@
# Makefile for examples
#
-ALL = spectrum.tap # c64.t64 zx81.p
+ALL = spectrum.tap c64.t64 # zx81.p
CASM = ../casm
all: $(ALL)
@@ -28,5 +28,8 @@ all: $(ALL)
spectrum.tap: spectrum.asm
$(CASM) spectrum.asm
+c64.t64: c64.asm
+ $(CASM) c64.asm
+
clean:
rm -f $(ALL)