From 98f35140fe924630a92e976fc36796bd8a4f0584 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Wed, 23 Nov 2022 00:05:28 -0600 Subject: [PATCH] [nostalgia] Make GBA project setup respect host specific build dir --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 406716ee..95bb0c02 100644 --- a/Makefile +++ b/Makefile @@ -34,8 +34,8 @@ debug-studio: install .PHONY: configure-gba configure-gba: - ${ENV_RUN} ${SETUP_BUILD} --toolchain=deps/gbabuildcore/cmake/modules/GBA.cmake --target=gba --current_build=0 --build_type=release + ${ENV_RUN} ${SETUP_BUILD} --toolchain=deps/gbabuildcore/cmake/modules/GBA.cmake --target=gba --current_build=0 --build_type=release --build_root=${BUILD_PATH} .PHONY: configure-gba-debug configure-gba-debug: - ${ENV_RUN} ${SETUP_BUILD} --toolchain=deps/gbabuildcore/cmake/modules/GBA.cmake --target=gba --current_build=0 --build_type=debug + ${ENV_RUN} ${SETUP_BUILD} --toolchain=deps/gbabuildcore/cmake/modules/GBA.cmake --target=gba --current_build=0 --build_type=debug --build_root=${BUILD_PATH}