From b8755d1def3628b449349f43971d6f8136d7e46e Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Thu, 19 Nov 2020 10:47:48 -0800 Subject: [PATCH] TEST_OBJS is a dependency for compiliation. This only broke during parallel builds --- testing/makefiles/testcase.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/makefiles/testcase.mk b/testing/makefiles/testcase.mk index 50a0e319..95f387c2 100644 --- a/testing/makefiles/testcase.mk +++ b/testing/makefiles/testcase.mk @@ -51,7 +51,7 @@ run: ${BIN_DIR}/${BIN_FILE} ${BIN_DIR}/${BIN_FILE}: ${TEST_OBJS} # We force sketch recompiliation because otherwise, make won't pick up changes to...anything on the arduino side -compile-sketch: +compile-sketch: ${TEST_OBJS} @install -d "${BIN_DIR}" "${LIB_DIR}" env LIBONLY=yes VERBOSE=${VERBOSE} LOCAL_CFLAGS="'-I$(shell pwd)'" \ OUTPUT_PATH="${LIB_DIR}" \