aboutsummaryrefslogtreecommitdiff
path: root/space
diff options
context:
space:
mode:
Diffstat (limited to 'space')
-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 $@