diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-07-14 13:18:13 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-07-14 13:18:13 +0000 |
commit | b7e3c86e4e5d4262a608163176d0b01c0cc54b29 (patch) | |
tree | 1a3e64fe61c730c56a8c808eafc2d5398a187c28 /LUFA/DoxygenPages | |
parent | d4980e58d420bd509a4bd7996aee74c4fbb01cd9 (diff) | |
download | lufa-b7e3c86e4e5d4262a608163176d0b01c0cc54b29.tar.gz lufa-b7e3c86e4e5d4262a608163176d0b01c0cc54b29.tar.bz2 lufa-b7e3c86e4e5d4262a608163176d0b01c0cc54b29.zip |
Rename build system module makefiles from "lufa.MODULE.in" to "lufa_MODULE.mk" to prevent makefile from assuming the include is an old style build rule, slowing down the build process.
Prevent the BUILD module from shell-executing multiple processes to determine the avr-size flags to speed up the build, unless the size rule is invoked.
Add warnings and set warnings as errors to the SingleUSBModeTest build test makefile.
Diffstat (limited to 'LUFA/DoxygenPages')
-rw-r--r-- | LUFA/DoxygenPages/BuildSystem.txt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/LUFA/DoxygenPages/BuildSystem.txt b/LUFA/DoxygenPages/BuildSystem.txt index 3ff3ff68d..3ecb9459a 100644 --- a/LUFA/DoxygenPages/BuildSystem.txt +++ b/LUFA/DoxygenPages/BuildSystem.txt @@ -17,7 +17,7 @@ *
* To use a LUFA build system module, simply add an include to your project makefile:
* \code
- * include $(LUFA_PATH)/Build/lufa.core.in
+ * include $(LUFA_PATH)/Build/lufa_core.mk
* \endcode
*
* And the associated build module targets will be added to your project's build makefile automatically.
@@ -53,7 +53,7 @@ *
* To use this module in your application makefile, add the following code:
* \code
- * include $(LUFA_PATH)/Build/lufa.build.in
+ * include $(LUFA_PATH)/Build/lufa_build.mk
* \endcode
*
* \section SSec_BuildModule_BUILD_Requirements Requirements
@@ -212,7 +212,7 @@ *
* To use this module in your application makefile, add the following code:
* \code
- * include $(LUFA_PATH)/Build/lufa.core.in
+ * include $(LUFA_PATH)/Build/lufa_core.mk
* \endcode
*
* \section SSec_BuildModule_CORE_Requirements Requirements
@@ -292,7 +292,7 @@ *
* To use this module in your application makefile, add the following code:
* \code
- * include $(LUFA_PATH)/Build/lufa.atprogram.in
+ * include $(LUFA_PATH)/Build/lufa_atprogram.mk
* \endcode
*
* \section SSec_BuildModule_ATPROGRAM_Requirements Requirements
@@ -367,7 +367,7 @@ *
* To use this module in your application makefile, add the following code:
* \code
- * include $(LUFA_PATH)/Build/lufa.avrdude.in
+ * include $(LUFA_PATH)/Build/lufa_avrdude.mk
* \endcode
*
* \section SSec_BuildModule_AVRDUDE_Requirements Requirements
@@ -443,7 +443,7 @@ *
* To use this module in your application makefile, add the following code:
* \code
- * include $(LUFA_PATH)/Build/lufa.cppcheck.in
+ * include $(LUFA_PATH)/Build/lufa_cppcheck.mk
* \endcode
*
* \section SSec_BuildModule_CPPCHECK_Requirements Requirements
@@ -537,7 +537,7 @@ *
* To use this module in your application makefile, add the following code:
* \code
- * include $(LUFA_PATH)/Build/lufa.dfu.in
+ * include $(LUFA_PATH)/Build/lufa_dfu.mk
* \endcode
*
* \section SSec_BuildModule_DFU_Requirements Requirements
@@ -613,7 +613,7 @@ *
* To use this module in your application makefile, add the following code:
* \code
- * include $(LUFA_PATH)/Build/lufa.doxygen.in
+ * include $(LUFA_PATH)/Build/lufa_doxygen.mk
* \endcode
*
* \section SSec_BuildModule_DOXYGEN_Requirements Requirements
@@ -683,7 +683,7 @@ *
* To use this module in your application makefile, add the following code:
* \code
- * include $(LUFA_PATH)/Build/lufa.hid.in
+ * include $(LUFA_PATH)/Build/lufa_hid.mk
* \endcode
*
* \section SSec_BuildModule_HID_Requirements Requirements
@@ -764,7 +764,7 @@ *
* To use this module in your application makefile, add the following code:
* \code
- * include $(LUFA_PATH)/Build/lufa.sources.in
+ * include $(LUFA_PATH)/Build/lufa_sources.mk
* \endcode
*
* \section SSec_BuildModule_SOURCES_Requirements Requirements
|