diff options
author | hexcoder- <heiko@hexco.de> | 2020-03-18 17:26:21 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-03-18 17:26:21 +0100 |
commit | a5e747af14ee89ea7d8f98f782df96d02ee68063 (patch) | |
tree | 87b61cd6ff53b00d06c5af55b87364ae05fe3a80 /qemu_mode | |
parent | 50608615459b65eb9f9348a3dfd8fe257bb9deff (diff) | |
download | afl++-a5e747af14ee89ea7d8f98f782df96d02ee68063.tar.gz |
rework docs installation
Diffstat (limited to 'qemu_mode')
-rw-r--r-- | qemu_mode/libcompcov/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qemu_mode/libcompcov/Makefile b/qemu_mode/libcompcov/Makefile index 4f7b0c0e..f06ac2af 100644 --- a/qemu_mode/libcompcov/Makefile +++ b/qemu_mode/libcompcov/Makefile @@ -15,6 +15,8 @@ PREFIX ?= /usr/local HELPER_PATH = $(PREFIX)/lib/afl +DOC_PATH ?= $(PREFIX)/share/doc/afl +MAN_PATH ?= $(PREFIX)/man/man8 VERSION = $(shell grep '^\#define VERSION ' ../config.h | cut -d '"' -f2) @@ -38,5 +40,5 @@ compcovtest: compcovtest.cc install: all install -m 755 ../../libcompcov.so $${DESTDIR}$(HELPER_PATH) - install -m 644 -T README.md $${DESTDIR}$(HELPER_PATH)/README.compcov.md + install -m 644 -T README.md $${DESTDIR}$(DOC_PATH)/README.compcov.md |