diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-02 21:58:24 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-02 21:58:24 +0000 |
commit | 71978930065b6129a46c8e7690c828b63245d2f1 (patch) | |
tree | b4a3027177f770e0e41b9b0420ec5633815527c3 /LUFA | |
parent | d0737f6ad5e4c01afff38adbe648ad021dec03f2 (diff) | |
download | lufa-71978930065b6129a46c8e7690c828b63245d2f1.tar.gz lufa-71978930065b6129a46c8e7690c828b63245d2f1.tar.bz2 lufa-71978930065b6129a46c8e7690c828b63245d2f1.zip |
Rename program_ee AVRDUDE module target to program-ee. Update CORE build module to print out lists one item per line, rather than all on one line.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Build/lufa.avrdude.in | 6 | ||||
-rw-r--r-- | LUFA/Build/lufa.core.in | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/LUFA/Build/lufa.avrdude.in b/LUFA/Build/lufa.avrdude.in index 4c0cb31e8..b44c9f6d7 100644 --- a/LUFA/Build/lufa.avrdude.in +++ b/LUFA/Build/lufa.avrdude.in @@ -7,7 +7,7 @@ #
LUFA_BUILD_MODULES += AVRDUDE
-LUFA_BUILD_TARGETS += program program_ee
+LUFA_BUILD_TARGETS += program program-ee
LUFA_BUILD_MANDATORY_VARS += MCU TARGET
LUFA_BUILD_OPTIONAL_VARS += AVRDUDE_PROGRAMMER AVRDUDE_PORT AVRDUDE_FLAGS
@@ -22,7 +22,7 @@ LUFA_BUILD_OPTIONAL_VARS += AVRDUDE_PROGRAMMER AVRDUDE_PORT AVRDUDE_FLAGS #
# program - Program target FLASH with application using
# avrdude
-# program_ee - Program target EEPROM with application data
+# program-ee - Program target EEPROM with application data
# using avrdude
#
# MANDATORY PARAMETERS:
@@ -57,6 +57,6 @@ program: $(TARGET).hex @echo $(MSG_AVRDUDE_CMD) Programming device \"$(MCU)\" with settings \"$(AVRDUDE_FLASH_FLAGS)\" using \"$(AVRDUDE_PROGRAMMER)\" on port \"$(AVRDUDE_PORT)\"
avrdude -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) $(AVRDUDE_FLASH_FLAGS)
-program_ee: $(TARGET).eep
+program-ee: $(TARGET).eep
@echo $(MSG_AVRDUDE_CMD) Programming device \"$(MCU)\" with settings \"$(AVRDUDE_EEP_FLAGS)\" using \"$(AVRDUDE_PROGRAMMER)\" on port \"$(AVRDUDE_PORT)\"
avrdude -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) $(AVRDUDE_EEP_FLAGS)
diff --git a/LUFA/Build/lufa.core.in b/LUFA/Build/lufa.core.in index f403b9edb..f53bd3ec3 100644 --- a/LUFA/Build/lufa.core.in +++ b/LUFA/Build/lufa.core.in @@ -63,22 +63,22 @@ help: @echo "==================================================================="
@echo " Currently used modules in this application: "
@echo " "
- @echo " [" $(SORTED_LUFA_BUILD_MODULES) "]"
+ @printf " %b" "$(SORTED_LUFA_BUILD_MODULES:%= - %\n)"
@echo " "
@echo " "
@echo " Currently available build targets in this application: "
@echo " "
- @echo " [" $(SORTED_LUFA_BUILD_TARGETS) "]"
+ @printf " %b" "$(SORTED_LUFA_BUILD_TARGETS:%= - %\n)"
@echo " "
@echo " "
@echo " Mandatory variables required by the selected build Modules: "
@echo " "
- @echo " [" $(SORTED_LUFA_MANDATORY_VARS) "]"
+ @printf " %b" "$(SORTED_LUFA_MANDATORY_VARS:%= - %\n)"
@echo " "
@echo " "
@echo " Optional variables required by the selected build Modules: "
@echo " "
- @echo " [" $(SORTED_LUFA_OPTIONAL_VARS) "]"
+ @printf " %b" "$(SORTED_LUFA_OPTIONAL_VARS:%= - %\n)"
@echo " "
@echo "==================================================================="
@echo " The LUFA BuildSystem 2.0 - Powered By Unicorns (tm) "
|