summaryrefslogtreecommitdiff
path: root/arm7
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2021-11-24 09:38:34 -0500
committerPikalaxALT <pikalaxalt@gmail.com>2021-11-24 09:38:34 -0500
commitc619240caca34b085918f948da2aac55d1e76691 (patch)
tree2de219f1e01d4d2484d17c77442a3c9da3c2aa69 /arm7
parent94e97e9e77ed2e54faf76716d76406b81d24c14e (diff)
Fix build system for macOS
Diffstat (limited to 'arm7')
-rw-r--r--arm7/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arm7/Makefile b/arm7/Makefile
index 9b660322..4f99c50b 100644
--- a/arm7/Makefile
+++ b/arm7/Makefile
@@ -185,7 +185,7 @@ $(ROM): $(O_FILES) $(BUILD_DIR)/$(LD_SCRIPT) $(BIN_FILES)
$(OBJCOPY) --update-section arm7=$@ -j arm7 $(foreach ov,$(OVERLAYS),--update-section $(ov)=$(BUILD_DIR)/$(ov).sbin -j $(ov)) $(ELF) 2>/dev/null
# Make sure build directory exists before compiling anything
-DUMMY != mkdir -p $(ALL_DIRS)
+DUMMY := $(shell mkdir -p $(ALL_DIRS))
%.4bpp: %.png
$(GFX) $< $@