diff options
author | hexcoder- <heiko@hexco.de> | 2020-05-14 09:00:17 +0000 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-05-14 09:00:17 +0000 |
commit | 6b69cd2e574fbcea79b7322c443841292f220d82 (patch) | |
tree | a9df7ec86097c98b7fe6f208f63017ac49cfd78e | |
parent | 56a86bb9e21bb1d4a081f1c97a60066307e42c60 (diff) | |
download | afl++-6b69cd2e574fbcea79b7322c443841292f220d82.tar.gz |
Makefile: for convenience forward targets to GNUmake
-rw-r--r-- | Makefile | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 0b306dde..08dd29d7 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,42 @@ all: - @echo please use GNU make, thanks! + @echo trying to use GNU make... + @gmake all + +source-only: + @gmake source-only + +binary-only: + @gmake binary-only + +distrib: + @gmake distrib + +man: + @gmake man + +install: + @gmake install + +document: + @gmake document + +deepclean: + @gmake deepclean + +code-format: + @gmake code-format + +help: + @gmake help + +tests: + @gmake tests + +unit: + @gmake unit + +unit_clean: + @gmake unit_clean + +clean: + @gmake clean |