Add documentation for the TARGET variable.
This commit is contained in:
parent
69f3db0bff
commit
81d0669869
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
|
### ALTERNATE_CORE
|
||||||
|
|
||||||
**Description:**
|
**Description:**
|
||||||
|
|
Loading…
Reference in a new issue