- * </table>\r
- *\r
- * \section SSec_BuildModule_BUILD_OptionalParams Optional Parameters\r
- *\r
- * <table>\r
- * <tr>\r
- * <td><tt>BOARD</tt></td>\r
- * <td>LUFA board hardware drivers to use (see \ref Page_DeviceSupport).</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>OPTIMIZATION</tt></td>\r
- * <td>Optimization level to use when compiling source files (see GCC manual).</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>C_STANDARD</tt></td>\r
- * <td>Version of the C standard to apply when compiling C++ source files (see GCC manual).</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>CPP_STANDARD</tt></td>\r
- * <td>Version of the C++ standard to apply when compiling C++ source files (see GCC manual).</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>F_CPU</tt></td>\r
- * <td>Speed of the processor CPU clock, in Hz.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>C_FLAGS</tt></td>\r
- * <td>Flags to pass to the C compiler only, after the automatically generated flags.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>CPP_FLAGS</tt></td>\r
- * <td>Flags to pass to the C++ compiler only, after the automatically generated flags.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>ASM_FLAGS</tt></td>\r
- * <td>Flags to pass to the assembler only, after the automatically generated flags.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>CC_FLAGS</tt></td>\r
- * <td>Common flags to pass to the compiler, assembler and linker, after the automatically generated flags.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>LD_FLAGS</tt></td>\r
- * <td>Flags to pass to the linker, after the automatically generated flags.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>OBJDIR</tt></td>\r
- * <td>Directory to place the generated object and dependency files. If set to "." the same folder as the source file will be used.\r
- * \note When this option is enabled, all source filenames must be unique.</td>\r
- * </tr>\r
- * </table>\r
- *\r
- * \section SSec_BuildModule_BUILD_ProvideVariables Module Provided Variables\r
- *\r
- * <table>\r
- * <tr>\r
- * <td><i>None</i></td>\r
- * </tr>\r
- * </table> \r
- *\r
- * \section SSec_BuildModule_BUILD_ProvidedMacros Module Provided Macros\r
- *\r
- * <table>\r
- * <tr>\r
- * <td><i>None</i></td>\r
- * </tr>\r
- * </table>\r
- */\r
-\r
-/** \page Page_BuildModule_CORE The CORE build module\r
- *\r
- * The core LUFA build system module, providing common build system help and information targets.\r
- *\r
- * To use this module in your application makefile, add the following code:\r
- * \code\r
- * include $(LUFA_PATH)/Build/lufa.core.in\r
- * \endcode\r
- *\r
- * \section SSec_BuildModule_CORE_Requirements Requirements\r
- * This module has no requirements outside a standard *nix shell like environment; the <tt>sh</tt>\r
- * shell, GNU <tt>make</tt> and *nix CoreUtils (<tt>echo</tt>, <tt>printf</tt>, etc.).\r
- *\r
- * \section SSec_BuildModule_CORE_Targets Targets\r
- *\r
- * <table>\r
- * <tr>\r
- * <td><tt>help</tt></td>\r
- * <td>Display build system help and configuration information.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>list_targets</tt></td>\r
- * <td>List all available build targets from the build system.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>list_modules</tt></td>\r
- * <td>List all available build modules from the build system.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>list_mandatory</tt></td>\r
- * <td>List all mandatory parameters required by the included modules.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>list_optional</tt></td>\r
- * <td>List all optional parameters required by the included modules.</td>\r
- * </tr>\r
- * <tr>\r
- * <td><tt>list_provided</tt></td>\r
- * <td>List all variables provided by the included modules.</td>\r
- * </tr>\r