diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2025-12-15 14:49:04 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2025-12-15 15:31:10 +0100 |
| commit | e78f18f7078c78c2a6195c4c6478c55d4e43284f (patch) | |
| tree | 75270d75c5718d239130786fec28d0ea34abe58d /Makefile | |
| parent | 74b1003ab8abad2f8220de4f2f18a3b118f23f01 (diff) | |
| download | jetpac.nes-e78f18f7078c78c2a6195c4c6478c55d4e43284f.tar.gz jetpac.nes-e78f18f7078c78c2a6195c4c6478c55d4e43284f.zip | |
Only use --stats if V=1
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -19,10 +19,14 @@ endif # that you might require. CCOPTS ?= --target nes -# Be strict and more verbose when using xa65. +# Be strict and 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. |
