From de848d4e1c7cfcffc762ccf68c378fadd74332d1 Mon Sep 17 00:00:00 2001 From: Zilin Zhu Date: Thu, 4 Aug 2022 11:11:09 +0800 Subject: [PATCH] fix(makefile): mkdir DEBUG_OBJ_DIR before compiling bindings (#975) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0053a58196..93510c5dd7 100644 --- a/Makefile +++ b/Makefile @@ -1261,7 +1261,7 @@ clean: clean-bindings (cd $(BUN_DEPS_DIR)/zlib && make clean) || echo ""; bindings-release: $(OBJ_FILES) $(WEBCORE_OBJ_FILES) $(SQLITE_OBJ_FILES) $(BUILTINS_OBJ_FILES) -bindings: $(DEBUG_OBJ_FILES) $(DEBUG_WEBCORE_OBJ_FILES) $(DEBUG_SQLITE_OBJ_FILES) $(DEBUG_BUILTINS_OBJ_FILES) +bindings: $(DEBUG_OBJ_DIR) $(DEBUG_OBJ_FILES) $(DEBUG_WEBCORE_OBJ_FILES) $(DEBUG_SQLITE_OBJ_FILES) $(DEBUG_BUILTINS_OBJ_FILES) .PHONY: jsc-bindings-mac jsc-bindings-mac: bindings