diff options
| author | van Hauser <vh@thc.org> | 2019-09-20 19:39:19 +0200 |
|---|---|---|
| committer | van Hauser <vh@thc.org> | 2019-09-20 19:39:19 +0200 |
| commit | 6e6480c9527d397f7554614f1e52f5652580cc4b (patch) | |
| tree | 404fbd6220df0c87daab27c1c8332ff2cf66dc44 /Makefile | |
| parent | ff5c7b155ccb44c8a529167f411f3c9783b024fa (diff) | |
| download | afl++-6e6480c9527d397f7554614f1e52f5652580cc4b.tar.gz | |
install libtokencap and libdislocator if present
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile index da4c5e95..0a654db7 100644 --- a/Makefile +++ b/Makefile @@ -280,6 +280,8 @@ endif if [ -f compare-transform-pass.so ]; then set -e; install -m 755 compare-transform-pass.so $${DESTDIR}$(HELPER_PATH); fi if [ -f split-compares-pass.so ]; then set -e; install -m 755 split-compares-pass.so $${DESTDIR}$(HELPER_PATH); fi if [ -f split-switches-pass.so ]; then set -e; install -m 755 split-switches-pass.so $${DESTDIR}$(HELPER_PATH); fi + if [ -f libdislocator.so ]; then set -e; install -m 755 libdislocator.so $${DESTDIR}$(HELPER_PATH); fi + if [ -f libtokencap.so ]; then set -e; install -m 755 libtokencap.so $${DESTDIR}$(HELPER_PATH); fi if [ -f libcompcov.so ]; then set -e; install -m 755 libcompcov.so $${DESTDIR}$(HELPER_PATH); fi set -e; ln -sf afl-gcc $${DESTDIR}$(BIN_PATH)/afl-g++ |
