From 24a50c0de73c71142c8eaa652133b31a7ea807c4 Mon Sep 17 00:00:00 2001 From: Alex Bates Date: Sat, 15 Aug 2020 03:52:44 +0100 Subject: [PATCH] support make -B flag --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 412373b776..95b28a0690 100644 --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ setup: clean submodules n64split split print-% : ; $(info $* is a $(flavor $*) variable set to [$($*)]) @true $(BUILD_DIR): - mkdir $(BUILD_DIR) + mkdir -p $(BUILD_DIR) $(BUILD_DIR)/$(TARGET).elf: $(O_FILES) $(LD_SCRIPT) @$(LD) $(LDFLAGS) -o $@ $(O_FILES)