From 25302a2513307a3a41b76f5e568f0916713c0620 Mon Sep 17 00:00:00 2001 From: Ian C Date: Tue, 21 Sep 2021 21:17:14 +0100 Subject: Imported V1.9 --- src/example/Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/example/Makefile') diff --git a/src/example/Makefile b/src/example/Makefile index 93bef30..a76a21f 100644 --- a/src/example/Makefile +++ b/src/example/Makefile @@ -20,7 +20,8 @@ # Makefile for examples # -ALL = spectrum.tap c64.t64 zx81.p gb.gb vcs.bin snes.sfc nes.nes cpc.cdt +ALL = spectrum.tap t64.t64 zx81.p gb.gb vcs.bin snes.sfc nes.nes cpc.cdt \ + prg.prg CASM = ../casm all: $(ALL) $(CASM) @@ -33,8 +34,8 @@ remake: clean all spectrum.tap: spectrum.asm $(CASM) $(CASM) spectrum.asm -c64.t64: c64.asm $(CASM) - $(CASM) c64.asm +t64.t64: t64.asm $(CASM) + $(CASM) t64.asm cpc.cdt: cpc.asm $(CASM) $(CASM) cpc.asm @@ -54,5 +55,9 @@ snes.sfc: snes.asm $(CASM) nes.nes: nes.asm tiles.chr nes.pal $(CASM) $(CASM) nes.asm +prg.prg: prg.asm $(CASM) + $(CASM) prg.asm + clean: rm -f $(ALL) + -- cgit v1.2.3