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 d184de0..906bb44 100644
--- a/src/example/Makefile
+++ b/src/example/Makefile
@@ -20,7 +20,7 @@
# Makefile for examples
#
-ALL = spectrum.tap c64.t64 zx81.p gb.rom
+ALL = spectrum.tap c64.t64 zx81.p gb.rom vcs.bin
CASM = ../casm
all: $(ALL) $(CASM)
@@ -42,5 +42,8 @@ zx81.p: zx81.asm $(CASM)
gb.rom: gb.asm $(CASM)
$(CASM) gb.asm
+vcs.bin: vcs.asm $(CASM)
+ $(CASM) vcs.asm
+
clean:
rm -f $(ALL)