Skip to content

Commit

Permalink
build: Find and output assembler error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasvr committed Jan 23, 2021
1 parent 06af605 commit 823a41f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 823a41f

Please # to comment.