diff options
| author | hexcoder- <heiko@hexco.de> | 2020-05-14 18:41:44 +0200 |
|---|---|---|
| committer | hexcoder- <heiko@hexco.de> | 2020-05-14 18:41:44 +0200 |
| commit | ae15803bf1cfa86067013b6b1d447de75ef45667 (patch) | |
| tree | aa265550c258bb51330dead859ff945daef05652 /Makefile | |
| parent | 9e375179d8bfe1375625258b4fcdf018cd598cfc (diff) | |
| parent | 682b620922a7d30393e30e23f4c1d7e05a83a6cc (diff) | |
| download | afl++-ae15803bf1cfa86067013b6b1d447de75ef45667.tar.gz | |
Merge branch 'dev' of https://github.com/AFLplusplus/AFLplusplus into dev
Diffstat (limited to 'Makefile')
| -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 |
