diff options
author | Daniel Friesel <derf@finalrewind.org> | 2017-12-15 15:19:55 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2017-12-15 15:19:55 +0100 |
commit | 771b62b056cfebecf8fb5ed4e1938ffc12d167f8 (patch) | |
tree | ce30e216a38055fd43951bb0c13abf06297a8323 /src/arch/posix | |
parent | d7ea6ad1cbcfaec12393a5789e0eef34e56c77b9 (diff) |
Add basic help output
Diffstat (limited to 'src/arch/posix')
-rw-r--r-- | src/arch/posix/Makefile.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/arch/posix/Makefile.inc b/src/arch/posix/Makefile.inc index 03b6f67..37c8e0e 100644 --- a/src/arch/posix/Makefile.inc +++ b/src/arch/posix/Makefile.inc @@ -26,4 +26,8 @@ program: run arch_clean: rm -f ${OBJECTS} -.PHONY: arch_clean monitor program run +arch_help: + @echo "posix specific flags:" + @echo " - none -" + +.PHONY: arch_clean arch_help monitor program run |