summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2024-01-23 17:59:52 +0100
committerBad Diode <bd@badd10de.dev>2024-01-23 17:59:52 +0100
commitb1f597fe0ba040f9ab7106554c2c629cc949c41a (patch)
tree6e83f4fab2b20776992a6977c50b2dee95d47cc1 /Makefile
parentbaf4091795c5a87ff286e83f012ac091bcdd5848 (diff)
downloadgba-renderers-b1f597fe0ba040f9ab7106554c2c629cc949c41a.tar.gz
gba-renderers-b1f597fe0ba040f9ab7106554c2c629cc949c41a.zip
Update profiling macros and m0 renderer
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 98fbfd1..8db7b02 100644
--- a/Makefile
+++ b/Makefile
@@ -17,8 +17,8 @@ BUILD_DIR := build
17SRC_MAIN := $(SRC_DIR)/main.c 17SRC_MAIN := $(SRC_DIR)/main.c
18SRC_BDGBA := $(wildcard $(SRC_DIR)/gba/*.s) 18SRC_BDGBA := $(wildcard $(SRC_DIR)/gba/*.s)
19SRC_BDGBA += $(wildcard $(SRC_DIR)/gba/*.c) 19SRC_BDGBA += $(wildcard $(SRC_DIR)/gba/*.c)
20SRC_BDTEXT := $(wildcard $(SRC_DIR)/text/*.s) 20SRC_BDTEXT := $(wildcard $(SRC_DIR)/gba/text/*.s)
21SRC_BDTEXT += $(wildcard $(SRC_DIR)/text/*.c) 21SRC_BDTEXT += $(wildcard $(SRC_DIR)/gba/text/*.c)
22SRC := $(SRC_MAIN) $(SRC_BDGBA) $(SRC_BDTEXT) 22SRC := $(SRC_MAIN) $(SRC_BDGBA) $(SRC_BDTEXT)
23WATCH_SRC := $(shell find $(SRC_DIR) -name *.c -or -name *.s -or -name *.h) 23WATCH_SRC := $(shell find $(SRC_DIR) -name *.c -or -name *.s -or -name *.h)
24INC_DIRS := $(shell find $(SRC_DIR) -type d) 24INC_DIRS := $(shell find $(SRC_DIR) -type d)