testing/makefiles: Respect the VERBOSE environment variable

Instead of unconditionally running the arduino-based build parts in verbose
mode, respect $VERBOSE. This cuts down on the amount of output we generate by
default, while still allowing us to have a verbose mode if need be.

Signed-off-by: Gergely Nagy <algernon@keyboard.io>
pull/927/head
Gergely Nagy 4 years ago
parent 478b91decb
commit 6bc8c4e243
No known key found for this signature in database
GPG Key ID: AC1E90BAC433F68F

@ -35,7 +35,7 @@ ${BIN_DIR}/${BIN_FILE}: ${TEST_OBJS}
env LIBONLY=yes \
LOCAL_CFLAGS='"-I$(shell pwd)"' \
OUTPUT_PATH="${LIB_DIR}" \
VERBOSE=1 \
VERBOSE=${VERBOSE} \
ARCH=virtual DEFAULT_SKETCH=sketch \
$(MAKE) -f ${top_dir}/testing/makefiles/delegate.mk
g++ -o "${BIN_DIR}/${BIN_FILE}" \

Loading…
Cancel
Save