Merge pull request #380 from svendahlstrand/target-documentation
Add documentation for the TARGET variable. thanks @svendahlstrand
This commit is contained in:
commit
40f17b8482
1 changed files with 20 additions and 0 deletions
|
@ -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:**
|
||||
|
|
Loading…
Reference in a new issue