diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-04-13 17:44:37 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-13 17:44:48 +0200 |
commit | a2574169e2b4f2567ca2961843ad3615b7aa7c9a (patch) | |
tree | f2a40c338468cd72605eb5c09faace6fd5f21c81 | |
parent | 4b88e059efb29e21290bfae9ebae8f9521e2e91c (diff) | |
download | afl++-a2574169e2b4f2567ca2961843ad3615b7aa7c9a.tar.gz |
added NO_PYTHON support
-rw-r--r-- | GNUmakefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index a3ac2e06..74a290e6 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -145,6 +145,11 @@ else PYFLAGS= endif +ifdef NO_PYTHON + PYTHON_OK=0 + PYFLAGS= +endif + ifdef STATIC $(info Compiling static version of binaries) # Disable python for static compilation to simplify things |