From 97ad13291ba0162117df77b038f0c011a14a31c0 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Wed, 11 Feb 2026 22:13:53 +0100 Subject: nasm: always save memory/segments stats MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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à --- Makefile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3