diff options
author | Ian C <ianc@noddybox.co.uk> | 2016-12-16 16:49:34 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2016-12-16 16:49:34 +0000 |
commit | 3b86882357e8e02fc2740f16780d1c4620ea0c57 (patch) | |
tree | f1197d92e3472c71ff9a9a80dfdb49ebaed569ea /src/example/Makefile | |
parent | 0127dbc7c79ba19c21ef07f2b1764857f5bf9717 (diff) |
Added initial files for CPC output.
Diffstat (limited to 'src/example/Makefile')
-rw-r--r-- | src/example/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/example/Makefile b/src/example/Makefile index f9f15db..a1807a2 100644 --- a/src/example/Makefile +++ b/src/example/Makefile @@ -20,7 +20,7 @@ # Makefile for examples # -ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc nes.nes +ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc nes.nes cpc.cdt CASM = ../casm all: $(ALL) $(CASM) @@ -36,6 +36,9 @@ spectrum.tap: spectrum.asm $(CASM) c64.t64: c64.asm $(CASM) $(CASM) c64.asm +cpc.cdt: cpc.asm + $(CASM) cpc.asm + zx81.p: zx81.asm $(CASM) $(CASM) zx81.asm |