summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNathaniel Graff <nathaniel.graff@sifive.com>2019-01-16 11:32:18 -0800
committerNathaniel Graff <nathaniel.graff@sifive.com>2019-01-18 10:22:29 -0800
commit2a379b789c1bcba4934e0fe1da4017f07bc703be (patch)
tree37287082f228b744a4a55232db27f73a31a06fad /README.md
parente122cc888ddd6608d26281ea83b300f491ea4f25 (diff)
Document standalone target
Add documentation to README and `make help` Signed-off-by: Nathaniel Graff <nathaniel.graff@sifive.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index f900277..4ade87c 100644
--- a/README.md
+++ b/README.md
@@ -235,6 +235,19 @@ make BSP=mee [PROGRAM=hello] [BOARD=sifive-hifive1] debug
make BSP=mee [PROGRAM=hello] [BOARD=sifive-hifive1] clean
```
+#### Create a Standalone Project ####
+
+You can export a program to a standalone project directory using the `standalone`
+target. The resulting project will be locked to a specific target `BOARD`. Note
+that this functionality is only supported for Freedom Metal programs, not the
+Legacy Freedom E SDK.
+
+`STANDALONE_DEST` is a required argument to provide the desired project location.
+
+```
+make BSP=mee [PROGRAM=hello] [BOARD=sifive-hifive1] STANDALONE_DEST=/path/to/desired/location standalone
+```
+
Run `make help` for more commands.
### Benchmarking ###