From f1a5c1d1f4bacaecf83787538b02fc1c94dfd7e3 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Wed, 27 Sep 2017 20:07:49 +0200 Subject: [PATCH] Don't add the .css file when installing the documentation Fixes #45 Another option would be to move the .css file elsewhere, but this fix is more resilient. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 4d63e69..c325e54 100644 --- a/makefile +++ b/makefile @@ -33,7 +33,7 @@ install: library src/monocypher.h install-doc install-doc: mkdir -p $(MAN_DIR) - cp -r doc/man/man3/* $(MAN_DIR) + cp -r doc/man/man3/*.3monocypher $(MAN_DIR) library: static-library dynamic-library static-library : lib/libmonocypher.a -- 2.47.3