Add help to make, so people easily know the test run way. - geomyidae-tests - g… | |
git clone git://bitreich.org/geomyidae-tests/ git://enlrupgkhuxnvlhsf6lc3fziv5h… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit 286c46753cae16b8748b56b66a50e2c98cd6b6f1 | |
parent 364d7eda6228d72caa0c3a170addaf5757115934 | |
Author: Christoph Lohmann <[email protected]> | |
Date: Sat, 22 Jul 2023 19:35:21 +0200 | |
Add help to make, so people easily know the test run way. | |
Diffstat: | |
M Makefile | 8 +++++++- | |
1 file changed, 7 insertions(+), 1 deletion(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -1,4 +1,4 @@ | |
-build: clean | |
+build: clean help | |
${CC} -o test.cgi test.c -static -Wall | |
clean-results: | |
@@ -7,3 +7,9 @@ clean-results: | |
clean: | |
rm -f test.cgi | |
+ | |
+help: | |
+ @printf "1.) Please modify the script to geomyidae in run.sh.\n" | |
+ @printf "2.) As root (sudo) run: ./run.sh\n" | |
+ @printf "3.) See the results in ./results\n" | |
+ |