mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-02-24 15:44:47 +08:00
fixed target "help" in Makefile
Without this commit, running `make help` produced the below output.
$ make help
Multi-OS Makefile, you are running on Linux
Possible targets:
+ all - Make bootrom, armsrc and the OS-specific host directory
+ client - Make only the OS-specific host directory
+ flash-bootrom - Make bootrom and flash it
/bin/sh: 1: Syntax error: "(" unexpected
Makefile:20: recipe for target 'help' failed
make: *** [help] Error 2
This issue was introduced in e335ca2846
six months ago, the above output was produced on Debian GNU/Linux, where
`/bin/sh` is usually a symbolic link to `/bin/dash`.
This commit is contained in:
parent
2487dfeb07
commit
16f54ead2a
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -22,7 +22,7 @@ help:
|
|||
@echo + all - Make bootrom, armsrc and the OS-specific host directory
|
||||
@echo + client - Make only the OS-specific host directory
|
||||
@echo + flash-bootrom - Make bootrom and flash it
|
||||
@echo + flash-os - Make armsrc and flash os (includes fpga)
|
||||
@echo + flash-os - Make armsrc and flash os \(includes fpga\)
|
||||
@echo + flash-all - Make bootrom and armsrc and flash bootrom and os image
|
||||
@echo + clean - Clean in bootrom, armsrc and the OS-specific host directory
|
||||
|
||||
|
|
Loading…
Reference in a new issue