summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi@gmail.com>2020-08-09 14:03:48 -0400
committerRangi <remy.oukaour+rangi@gmail.com>2020-08-09 14:03:48 -0400
commita75c6619fb933dc2d4c94b24394fb6fa9335b3b1 (patch)
tree6e90a61bcfa23f20358009d29eb8c2c38bcebe6a /Makefile
parentb7da8dbb0e2236f37e4b4c99b88598369da3a008 (diff)
Remove "; if DEBUG" comments for SECTIONs, and "if DEBUG" conditions since only the debug Gold ROM is built
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index af781be..b546677 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ RGBFIX ?= $(RGBDS)rgbfix
RGBGFX ?= $(RGBDS)rgbgfx
RGBLINK ?= $(RGBDS)rgblink
-RGBASMFLAGS := -h -E -i $(BUILD)/ -DGOLD -DDEBUG=1
+RGBASMFLAGS := -h -E -i $(BUILD)/ -DGOLD
tools/gfx :=
@@ -135,7 +135,7 @@ $(BUILD)/%.tilemap: %.png | $$(dir $$@)
mkdir -p $@
-### Scan .asm files for INCLUDE/INCBIN dependencies
+### Scan .asm files for INCLUDE dependencies
DEPENDENCY_SCAN_EXIT_STATUS := $(shell $(PYTHON) tools/scan_includes.py $(BUILD:%=-b %) $(ASMFILES) > dependencies.d; echo $$?)
ifneq ($(DEPENDENCY_SCAN_EXIT_STATUS), 0)