aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-02-11 22:13:53 +0100
committerMiquel Sabaté Solà <mssola@mssola.com>2026-02-11 22:14:53 +0100
commit97ad13291ba0162117df77b038f0c011a14a31c0 (patch)
treed96c1903267fced79215cc4112ea172ab5a9211f /Makefile
parent21cf427b70f9e094423652741795e8e02128f28b (diff)
downloadjetpac.nes-97ad13291ba0162117df77b038f0c011a14a31c0.tar.gz
jetpac.nes-97ad13291ba0162117df77b038f0c011a14a31c0.zip
nasm: always save memory/segments stats
And don't let git ignore it. From now on this will be available in git as well so to detect regressions. Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 640cd02..668dab8 100644
--- a/Makefile
+++ b/Makefile
@@ -21,12 +21,8 @@ CCOPTS ?= --target nes
# Be strict when using xa65, and extra verbose if V=1.
ifeq ($(CC65),xa65)
-ifeq ($(strip $(V)),)
- CCOPTS += --strict
-else
CCOPTS += --strict --stats
endif
-endif
# Ruby is used to generate the files on `config/values/`. If it can't be found,
# a warning will be echo'ed.
@@ -74,7 +70,7 @@ build-full:
$(Q) echo "LEVEL = $(LEVEL)" >> config/generated.s
$(E) " CC jetpac (NTSC)"
- $(Q) $(CC65) $(CCOPTS) src/jetpac.s -C config/nrom.cfg -o "out/Jetpac (NTSC).nes"
+ $(Q) $(CC65) $(CCOPTS) src/jetpac.s -C config/nrom.cfg -o "out/Jetpac (NTSC).nes" 1>/dev/null
.PHONY: build-partial
build-partial:
@@ -84,7 +80,7 @@ build-partial:
$(Q) echo "LEVEL = $(LEVEL)" >> config/generated.s
$(E) " CC jetpac (partial)"
- $(Q) $(CC65) $(CCOPTS) src/jetpac.s -C config/nrom.cfg -o "out/Jetpac (DEV).nes"
+ $(Q) $(CC65) $(CCOPTS) src/jetpac.s -C config/nrom.cfg -o "out/Jetpac (DEV).nes" 1>/dev/null
.PHONY: build-pal
build-pal:
@@ -94,4 +90,4 @@ build-pal:
$(Q) echo "LEVEL = $(LEVEL)" >> config/generated.s
$(E) " CC jetpac (PAL)"
- $(Q) $(CC65) $(CCOPTS) src/jetpac.s -C config/nrom.cfg -o "out/Jetpac (PAL).nes"
+ $(Q) $(CC65) $(CCOPTS) src/jetpac.s -C config/nrom.cfg -o "out/Jetpac (PAL).nes" 1>/dev/null