diff options
author | Nathaniel Graff <nathaniel.graff@sifive.com> | 2019-01-15 21:40:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-15 21:40:21 +0000 |
commit | 94b52a5811ff21f8f61ca8d1ef652f68ce6659f5 (patch) | |
tree | ae8ec1bb0e0736555f26f4128cf346207914d132 /Makefile | |
parent | b230f15ed26097d29ec2e2e3e6974587a259dcb4 (diff) | |
parent | e0b9f8aa5dd31380b34e1059022fa705f004f212 (diff) |
Merge pull request #148 from sifive/update-readme
Update readme
Diffstat (limited to 'Makefile')
-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: |