65caf8a605a8d0191fdd83f20eb9931e5e8adb04
[pub/USBasp.git] / LUFA / Build / DMBS / DMBS / Modules.md
1 DMBS - Dean's Makefile Build System
2 ===================================
3
4
5 Modules Overview
6 ---------------
7
8 The following modules are currently included:
9
10 - [ATPROGRAM](atprogram.md) - Device Programming
11 - [AVRDUDE](avrdude.md) - Device Programming
12 - [CORE](core.md) - DMBS Core Functionality
13 - [CPPCHECK](cppcheck.md) - Static Code Analysis
14 - [DFU](dfu.md) - Device Programming
15 - [DOXYGEN](doxygen.md) - Automated Source Code Documentation
16 - [GCC](gcc.md) - Compiling/Assembling/Linking with GCC
17 - [HID](hid.md) - Device Programming
18
19 To use a module, you will need to add the following boilerplate to your
20 makefile:
21
22 # Include DMBS build script makefiles
23 DMBS_PATH ?= ../DMBS
24
25 Which is then used to indicate the location of your DMBS installation, relative
26 to the current directory.