From e2d1de8ffe42552eb2ea4db9d2a5ba242ce549b7 Mon Sep 17 00:00:00 2001 From: Alex Bates Date: Thu, 22 Oct 2020 03:19:25 +0100 Subject: [PATCH] fix `make setup' when bin/ doesn't exist --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 38b35929be..4153cde5d8 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ WORLD_AREAS := area_dgb area_arn area_dro area_end area_flo area_gv area_hos are SRC_DIRS := $(shell find src -type d) ASM_DIRS := asm asm/os INCLUDE_DIRS := include include/PR src -DATA_DIRS := $(shell find bin -type d -not -name Yay0) +DATA_DIRS := $(shell mkdir -p bin && find bin -type d -not -name Yay0) YAY0_DIRS := bin/Yay0 ASSETS_FS_DIRS := assets/fs