aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Build
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-23 15:18:16 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-23 15:18:16 +0000
commite5cf169469cebc3b632e36b1277efdd52fcaa09a (patch)
treed416223098a05c74dba3bddf39d59160439156b8 /LUFA/Build
parentbf5b49ecf566c779bd64ba8beeb813bd4bf9913e (diff)
downloadlufa-e5cf169469cebc3b632e36b1277efdd52fcaa09a.tar.gz
lufa-e5cf169469cebc3b632e36b1277efdd52fcaa09a.tar.bz2
lufa-e5cf169469cebc3b632e36b1277efdd52fcaa09a.zip
Move out BUILD build system module start and end messages to the respective targets, as they are only used once.
Diffstat (limited to 'LUFA/Build')
-rw-r--r--LUFA/Build/lufa.build.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/LUFA/Build/lufa.build.in b/LUFA/Build/lufa.build.in
index ca97f7cf6..170c1b231 100644
--- a/LUFA/Build/lufa.build.in
+++ b/LUFA/Build/lufa.build.in
@@ -114,8 +114,6 @@ else
endif
# Output Messages
-MSG_BUILD_BEGIN := Begin compilation of project \"$(TARGET)\"...
-MSG_BUILD_END := Finished building project \"$(TARGET)\".
MSG_COMPILE_CMD := ' [GCC] :'
MSG_ASSEMBLE_CMD := ' [GAS] :'
MSG_NM_CMD := ' [NM] :'
@@ -184,11 +182,11 @@ SIZE_FORMAT_FLAG := $(shell $(CROSS)-size --help | grep -- --format=.*avr > /dev
build_begin:
@echo ""
- @echo $(MSG_BUILD_BEGIN)
+ @echo Begin compilation of project \"$(TARGET)\"...
@echo ""
build_end:
- @echo $(MSG_BUILD_END)
+ @echo Finished building project \"$(TARGET)\".
@echo ""
gcc_version: