aboutsummaryrefslogtreecommitdiff
path: root/space/Makefile
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-12-09 14:56:39 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2025-02-04 21:12:23 +0100
commit7d8da8b4fb9826ce21dbe821596509823f7ec16f (patch)
tree1ebce6651312b58ea939013c964033c349e130f3 /space/Makefile
parent4cfc79f145b7c620a2688f4a755d5e53c7ef0e9d (diff)
downloadcode.nes-7d8da8b4fb9826ce21dbe821596509823f7ec16f.tar.gz
code.nes-7d8da8b4fb9826ce21dbe821596509823f7ec16f.zip
Clean up the Makefile output
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à <mikisabate@gmail.com>
Diffstat (limited to 'space/Makefile')
-rw-r--r--space/Makefile15
1 files changed, 0 insertions, 15 deletions
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 $@