@echo " To execute a rule, define all variables indicated in the desired "\r
@echo " module as a required parameter before including the build module "\r
@echo " in your project makefile. Parameters marked as optional will "\r
- @echo " assume a default value in the module if not user-assigned. "\r
+ @echo " assume a default value in the modules if not user-assigned. "\r
@echo " "\r
@echo " By default the target output shows both a friendly summary, as "\r
@echo " well as the actual invoked command. To suppress the output of the "\r
@echo " invoked commands and show only the friendly command output, run "\r
@echo " make with the \"-s\" switch added before the target(s). " \r
@echo "==================================================================="\r
- @echo " Currently used modules in this application: "\r
+ @echo " Currently used build system modules in this application: "\r
@echo " "\r
@printf " %b" "$(SORTED_LUFA_BUILD_MODULES:%= - %\n)"\r
@echo " "\r
@echo "==================================================================="\r
\r
list_modules:\r
- @echo Currently Build Modules: $(SORTED_LUFA_BUILD_MODULES)\r
+ @echo Currently Used Build System Modules: $(SORTED_LUFA_BUILD_MODULES)\r
\r
list_targets:\r
@echo Currently Available Build Targets: $(SORTED_LUFA_BUILD_TARGETS) \r
list_optional:\r
@echo Optional Variables for Included Modules: $(SORTED_LUFA_OPTIONAL_VARS)\r
\r
-# Phony build targets for this module\r
-.PHONY: help list_modules list_targets list_mandatory list_optional\r
-\r
# Disable default in-built make rules (those that are needed are explicitly\r
# defined, and doing so has performance benefits when recursively building)\r
.SUFFIXES:\r
+\r
+# Phony build targets for this module\r
+.PHONY: help list_modules list_targets list_mandatory list_optional\r