From 496c10c96f85a052342374e40bde502d59ad538d Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Wed, 8 Jan 2025 19:04:43 +0000 Subject: [PATCH] hotfix(make): create the `target/` directory --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index c89c3cefb3..adbd3094b5 100644 --- a/Makefile +++ b/Makefile @@ -88,6 +88,9 @@ ELF := $(ROM:.gba=.elf) MAP := $(ROM:.gba=.map) SYM := $(ROM:.gba=.sym) +# Create the target directory +$(info $(shell mkdir -p $(BINARY_DIR))) + # Commonly used directories C_SUBDIR = src ASM_SUBDIR = asm