Add documentation for the TARGET variable.

This commit is contained in:
Sven Dahlstrand 2015-09-06 14:14:22 +02:00
parent 69f3db0bff
commit 81d0669869

View file

@ -378,6 +378,26 @@ OBJDIR = /path/to/my/project-directory/bin
----
### TARGET
**Description:**
What name you would like for generated target files.
Defaults to the name of your current working directory, but with underscores (_) instead of spaces.
**Example:**
```Makefile
TARGET = my-project
```
Will generate targets like `my-project.hex` and `my-project.elf`.
**Requirement:** *Optional*
----
### ALTERNATE_CORE
**Description:**