X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/7375c789e1b85ef5eb280339559c0cc9ae8f3b87..72fc4a204de72bfc3b2d62162d2c8ff59dd5803f:/LUFA/DoxygenPages/BuildSystem.txt diff --git a/LUFA/DoxygenPages/BuildSystem.txt b/LUFA/DoxygenPages/BuildSystem.txt index c1e8be3db..3ee524ba3 100644 --- a/LUFA/DoxygenPages/BuildSystem.txt +++ b/LUFA/DoxygenPages/BuildSystem.txt @@ -25,7 +25,7 @@ * project's build makefile targets automatically. To call a build target, run make {TARGET_NAME} * from the command line, substituting in the appropriate target name. * - * \see \ref Sec_AppConfigParams for a copy of the sample LUFA project makefile. + * \see \ref Sec_AppMakefileParams for a copy of the sample LUFA project makefile. * * Each build module may have one or more mandatory parameters (GNU Make variables) which must * be supplied in the project makefile for the module to work, and one or more optional parameters which @@ -74,10 +74,6 @@ * Display a size-sorted list of symbols from the compiled application, in decimal bytes. * * - * check-source - * Display a list of input SRC source files which cannot be found (if any). - * - * * lib * Build and archive all source files into a library A binary file. * @@ -106,7 +102,7 @@ * Remove all intermediatary files but preserve any binary output files. * * - * .s + * <filename>.s * Create an assembly listing of a given input C/C++ source file. * * @@ -192,6 +188,13 @@ * Flags to pass to the linker, after the automatically generated flags. * * + * LINKER_RELAXATIONS + * Enables or disables linker relaxations when linking the application binary. This can reduce the total size + * of the application by replacing full \c CALL instructions with smaller \c RCALL instructions where possible. + * \note On some unpatched versions of binutils, this can cause link failures in some circumstances. If you + * receive a link error relocation truncated to fit: R_AVR_13_PCREL, disable this setting. + * + * * OBJDIR * Directory to place the generated object and dependency files. If set to "." the same folder as the source file will be used. * \note When this option is enabled, all source filenames must be unique. @@ -631,9 +634,9 @@ * * \section SSec_BuildModule_DOXYGEN_Requirements Requirements * This module requires the doxygen utility from the Doxygen website - * (http://www.stack.nl/~dimitri/doxygen/) to be available in your system's PATH - * variable. On *nix systems the doxygen utility can be installed via the project's source - * code or through the package manager. + * (http://www.doxygen.org/) to be available in your system's PATH variable. On *nix + * systems the doxygen utility can be installed via the project's source code or through + * the package manager. * * \section SSec_BuildModule_DOXYGEN_Targets Targets * @@ -642,6 +645,14 @@ * doxygen * Generate project documentation. * + * + * doxygen_create + * Create a new Doxygen configuration file using the latest template. + * + * + * doxygen_upgrade + * Upgrade an existing Doxygen configuration file to the latest template + * * * * \section SSec_BuildModule_DOXYGEN_MandatoryParams Mandatory Parameters