From 7d8da8b4fb9826ce21dbe821596509823f7ec16f Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Mon, 9 Dec 2024 14:56:39 +0100 Subject: Clean up the Makefile output MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This also involves moving the target for the `space` example to the general Makefile. The Makefile is not as clear as I'd like, but at least it's not a mess (yet). Signed-off-by: Miquel Sabaté Solà --- space/Makefile | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 space/Makefile (limited to 'space') diff --git a/space/Makefile b/space/Makefile deleted file mode 100644 index e38607c..0000000 --- a/space/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -CC65 ?= cl65 -CCOPTS ?= --verbose --target nes - -.PHONY: all -all: clean build - -.PHONY: clean -clean: - @rm -f space.nes - -.PHONY: build -build: space.nes - -%.nes: src/%.s - $(CC65) $(CCOPTS) $< -o $@ -- cgit v1.2.3