diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-08-15 16:39:44 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-08-15 16:39:44 +0000 |
commit | 1f1bd69b85fe6946f4e7705abbcd2cf84c296017 (patch) | |
tree | 0eb287faec37334b3d3a90e51e7e56ed48bd5716 /LUFA | |
parent | 94f5f31f10a1e57378d6409287caf6473c2d02c4 (diff) | |
download | lufa-1f1bd69b85fe6946f4e7705abbcd2cf84c296017.tar.gz lufa-1f1bd69b85fe6946f4e7705abbcd2cf84c296017.tar.bz2 lufa-1f1bd69b85fe6946f4e7705abbcd2cf84c296017.zip |
Minor documentation and formatting updates.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Build/lufa_sources.mk | 2 | ||||
-rw-r--r-- | LUFA/DoxygenPages/BuildSystem.txt | 15 |
2 files changed, 9 insertions, 8 deletions
diff --git a/LUFA/Build/lufa_sources.mk b/LUFA/Build/lufa_sources.mk index 0e026c54e..f63718ce6 100644 --- a/LUFA/Build/lufa_sources.mk +++ b/LUFA/Build/lufa_sources.mk @@ -113,4 +113,4 @@ LUFA_SRC_ALL_FILES := $(LUFA_SRC_USB) \ $(LUFA_SRC_TEMPERATURE) \ $(LUFA_SRC_SERIAL) \ $(LUFA_SRC_TWI) \ - $(LUFA_SRC_PLATFORM) + $(LUFA_SRC_PLATFORM) diff --git a/LUFA/DoxygenPages/BuildSystem.txt b/LUFA/DoxygenPages/BuildSystem.txt index 9906fc678..a1ed8416e 100644 --- a/LUFA/DoxygenPages/BuildSystem.txt +++ b/LUFA/DoxygenPages/BuildSystem.txt @@ -15,14 +15,15 @@ * For details on the prerequisites needed for Linux and Windows machines to be able to use the LUFA
* build system, see \ref Sec_Prerequisites.
*
- * To use a LUFA build system module, simply add an include to your project makefile:
+ * To use a LUFA build system module, simply add an include to your project makefile. All user projects
+ * should at a minimum include \ref Page_BuildModule_CORE for base functionality:
* \code
* include $(LUFA_PATH)/Build/lufa_core.mk
* \endcode
*
- * And the associated build module targets will be added to your project's build makefile automatically.
- * To call a build target, run <tt>make {TARGET_NAME}</tt> from the command line, substituting in
- * the appropriate target name.
+ * Once included in your project makefile, the associated build module targets will be added to your
+ * project's build makefile targets automatically. To call a build target, run <tt>make {TARGET_NAME}</tt>
+ * from the command line, substituting in the appropriate target name.
*
* \see \ref Sec_AppConfigParams for a copy of the sample LUFA project makefile.
*
@@ -49,7 +50,7 @@ *
* The BUILD LUFA build system module, providing targets for the compilation,
* assembling and linking of an application from source code into binary files
- * suitable for programming into a target device.
+ * suitable for programming into a target device, using the GCC compiler.
*
* To use this module in your application makefile, add the following code:
* \code
@@ -57,7 +58,7 @@ * \endcode
*
* \section SSec_BuildModule_BUILD_Requirements Requirements
- * This module requires the the architecture appropriate binaries of the GCC compiler are available in your
+ * This module requires the the architecture appropriate binaries of the GCC compiler are available in your
* system's <b>PATH</b> variable. The GCC compiler and associated toolchain is distributed in Atmel AVR Studio
* 5.x and Atmel Studio 6.x installation directories, as well as in many third party distribution packages.
*
@@ -381,7 +382,7 @@ * \section SSec_BuildModule_AVRDUDE_Requirements Requirements
* This module requires the <tt>avrdude</tt> utility to be available in your system's <b>PATH</b>
* variable. The <tt>avrdude</tt> utility is distributed in the old WinAVR project releases for
- * Windows (<a>winavr.sourceforge.net</a>) or can be installed on *nix systems via the project's
+ * Windows (<a>http://winavr.sourceforge.net</a>) or can be installed on *nix systems via the project's
* source code (<a>https://savannah.nongnu.org/projects/avrdude</a>) or through the package manager.
*
* \section SSec_BuildModule_AVRDUDE_Targets Targets
|