diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-08-04 18:23:47 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-08-04 18:23:47 +0100 |
commit | c086f055ef676ca96e948340386cb04725916db3 (patch) | |
tree | 6a7cda12d663d1027351d6d98c2d98bc0face5b2 /src/example/Makefile | |
parent | 38f98a4d81042befe65fd84c33eeea806ecc5c86 (diff) |
framework is there.
Diffstat (limited to 'src/example/Makefile')
-rw-r--r-- | src/example/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/example/Makefile b/src/example/Makefile index 5d2d326..c74bbc8 100644 --- a/src/example/Makefile +++ b/src/example/Makefile @@ -21,7 +21,7 @@ # ALL = spectrum.tap t64.t64 zx81.p gb.gb vcs.bin snes.sfc nes.nes cpc.cdt \ - prg.prg hex.hex vic20.prg vic20+8k.prg + prg.prg hex.hex vic20.prg vic20+8k.prg c64.tap vic20.tap vic20+8k.tap CASM = ../casm all: $(ALL) $(CASM) @@ -67,6 +67,15 @@ vic20.prg: vic20.asm $(CASM) vic20+8k.prg: vic20+8k.asm $(CASM) $(CASM) vic20+8k.asm +c64.tap: c64-tap.asm $(CASM) + $(CASM) c64-tap.asm + +vic20.tap: vic20-tap.asm $(CASM) + $(CASM) vic20-tap.asm + +vic20+8k.tap: vic20+8k-tap.asm $(CASM) + $(CASM) vic20+8k-tap.asm + clean: rm -f $(ALL) |