From 823a41f025760dfe079e5bb3d9bb232ce704a5f4 Mon Sep 17 00:00:00 2001 From: Mathias Rasmussen Date: Sat, 23 Jan 2021 02:16:53 +0100 Subject: [PATCH] build: Find and output assembler error messages --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index be434f0..0d82570 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ $(OUTPUT_DIR)/$(1)_$(2)_$(3)_$(4)_$(VERSION).OBJ : $(ASM_SRC) $(ASM_INC) "DEFINE(FETON_DELAY=$(_DEADTIME)) "\ "DEFINE(PWM_FREQ=$(_PWM_FREQ)) "\ "OBJECT($$@) "\ - "$(AX51_FLAGS)" > $(_LOG) 2>&1 || (mv ./Bluejay.LST $(OUTPUT_DIR)/; tail $(_LOG); exit 1) + "$(AX51_FLAGS)" > $(_LOG) 2>&1 || (grep "\*\*\* ERROR" Bluejay.LST; mv ./Bluejay.LST $(OUTPUT_DIR)/; exit 1) @mv ./Bluejay.LST $(OUTPUT_DIR)/ endef