aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2025-02-04 11:00:22 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2025-02-04 22:00:07 +0100
commit6c4ac7727094259b3b5a25e8c168245983e70b2f (patch)
tree089c185a436f57a58f43b6c0ed3eed53e8b93da5 /Makefile
parentfdf44365e56c3741f47cbd421a57f0d074a5492c (diff)
downloadcode.nes-6c4ac7727094259b3b5a25e8c168245983e70b2f.tar.gz
code.nes-6c4ac7727094259b3b5a25e8c168245983e70b2f.zip
scroll: Implement a roulette-like game
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 461c0b5..066f663 100644
--- a/Makefile
+++ b/Makefile
@@ -54,9 +54,12 @@ space:
.PHONY: scroll
scroll:
- $(E) " CC scroll"
+ $(E) " CC scroll/level"
$(Q) $(CC65) $(CCOPTS) scroll/level.s -C config/nrom.cfg -o out/scroll/level.nes
+ $(E) " CC scroll/roulette"
+ $(Q) $(CC65) $(CCOPTS) scroll/roulette.s -C config/mmc3.cfg -o out/scroll/roulette.nes
+
.PHONY: fx
fx:
$(E) " CC fx/blink"