diff options
author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-01-15 10:55:24 -0800 |
---|---|---|
committer | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-01-15 13:31:57 -0800 |
commit | e0b9f8aa5dd31380b34e1059022fa705f004f212 (patch) | |
tree | ae8ec1bb0e0736555f26f4128cf346207914d132 | |
parent | 2f2ddaecf1926091061bb177914b0afc652e713d (diff) |
Update make help
Signed-off-by: Nathaniel Graff <nathaniel.graff@sifive.com>
-rw-r--r-- | Makefile | 24 |
1 files changed, 8 insertions, 16 deletions
@@ -88,36 +88,28 @@ endif ############################################################# .PHONY: help help: - @echo " SiFive Freedom E Software Development Kit " - @echo " Makefile targets:" + @echo " SiFive Freedom E Software Development Kit " + @echo " Makefile targets:" @echo "" - @echo " software BSP=legacy [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" + @echo " software BSP=mee [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" @echo " Build a software program to load with the" @echo " debugger." @echo "" @echo " mee BSP=mee [BOARD=$(BOARD)]" @echo " Build the MEE library for BOARD" @echo "" - @echo " examples BSP=mee [BOARD=$(BOARD)]" - @echo " Build all the examples for the given board." - @echo "" - @echo " clean [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" + @echo " clean BSP=mee [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" @echo " Clean compiled objects for a specified " @echo " software program." @echo "" - @echo " upload [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" + @echo " upload BSP=mee [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" @echo " Launch OpenOCD to flash your program to the" @echo " on-board Flash." @echo "" - @echo " run_openocd [BOARD=$(BOARD)]:" - @echo " run_gdb [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" - @echo " Launch OpenOCD or GDB seperately. Allows Ctrl-C to halt running" - @echo " programs." - @echo "" - @echo " dasm [PROGRAM=$(PROGRAM)]:" - @echo " Generates the dissassembly output of 'objdump -D' to stdout." + @echo " debug BSP=mee [PROGRAM=$(PROGRAM) BOARD=$(BOARD)]:" + @echo " Launch OpenOCD and attach GDB to the running program." @echo "" - @echo " For more information, visit dev.sifive.com" + @echo " For more information, read the accompanying README.md" .PHONY: clean clean: |