Move out BUILD build system module start and end messages to the respective targets, as they are only used once.

pull/1469/head
Dean Camera 12 years ago
parent bf5b49ecf5
commit e5cf169469

@ -114,8 +114,6 @@ else
endif endif
# Output Messages # Output Messages
MSG_BUILD_BEGIN := Begin compilation of project \"$(TARGET)\"...
MSG_BUILD_END := Finished building project \"$(TARGET)\".
MSG_COMPILE_CMD := ' [GCC] :' MSG_COMPILE_CMD := ' [GCC] :'
MSG_ASSEMBLE_CMD := ' [GAS] :' MSG_ASSEMBLE_CMD := ' [GAS] :'
MSG_NM_CMD := ' [NM] :' MSG_NM_CMD := ' [NM] :'
@ -184,11 +182,11 @@ SIZE_FORMAT_FLAG := $(shell $(CROSS)-size --help | grep -- --format=.*avr > /dev
build_begin: build_begin:
@echo "" @echo ""
@echo $(MSG_BUILD_BEGIN) @echo Begin compilation of project \"$(TARGET)\"...
@echo "" @echo ""
build_end: build_end:
@echo $(MSG_BUILD_END) @echo Finished building project \"$(TARGET)\".
@echo "" @echo ""
gcc_version: gcc_version:

Loading…
Cancel
Save