aboutsummaryrefslogtreecommitdiff
path: root/GNUmakefile.llvm
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-10-12 04:48:02 +0200
committervan Hauser <vh@thc.org>2020-10-12 04:48:02 +0200
commit15099f7f5a129dd3679df646ed2b50a3196188f1 (patch)
treea96fabb9ae07a570b0a62ca0277c8cccbecd5d7a /GNUmakefile.llvm
parentaef0cd5877e0e4d3450610d48c4f6188a114d2b3 (diff)
downloadAFLplusplus-15099f7f5a129dd3679df646ed2b50a3196188f1.tar.gz
fix afl-cc.8 generation
Diffstat (limited to 'GNUmakefile.llvm')
-rw-r--r--GNUmakefile.llvm5
1 files changed, 2 insertions, 3 deletions
diff --git a/GNUmakefile.llvm b/GNUmakefile.llvm
index e0dc793e..1f67ea7f 100644
--- a/GNUmakefile.llvm
+++ b/GNUmakefile.llvm
@@ -472,12 +472,11 @@ install: all
set -e; install -m 644 ./dynamic_list.txt $${DESTDIR}$(HELPER_PATH)
install -m 644 instrumentation/README.*.md $${DESTDIR}$(DOC_PATH)/
-vpath % ..
%.8: %
@echo .TH $* 8 $(BUILD_DATE) "afl++" > ./$@
@echo .SH NAME >> ./$@
- @printf "%s" ".B $* \- " >> ../$@
- @./$* -h 2>&1 | head -n 1 | sed -e "s/$$(printf '\e')[^m]*m//g" >> ../$@
+ @printf "%s" ".B $* \- " >> ./$@
+ @./$* -h 2>&1 | head -n 1 | sed -e "s/$$(printf '\e')[^m]*m//g" >> ./$@
@echo .B $* >> ./$@
@echo >> ./$@
@echo .SH SYNOPSIS >> ./$@