From 9f2c8c3027e06a7b969c3d35fa0232a2568261e6 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Tue, 25 May 2021 20:11:47 +0200 Subject: [PATCH] Install advanced man pages Note that deprecated man pages are omitted. I believe we should not clutter man pages with them. Advanced functions however should have their place in the user manual. --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 68bbe05..1c7b1a5 100644 --- a/makefile +++ b/makefile @@ -87,7 +87,8 @@ install: library src/monocypher.h monocypher.pc install-doc install-doc: mkdir -p $(DESTDIR)/$(MANDIR) - cp -PR doc/man/man3/*.3monocypher $(DESTDIR)/$(MANDIR) + cp -PR doc/man/man3/*.3monocypher $(DESTDIR)/$(MANDIR) + cp -PR doc/man/man3/advanced/*.3monocypher $(DESTDIR)/$(MANDIR) ifdef USE_ED25519 cp -PR doc/man/man3/optional/*.3monocypher $(DESTDIR)/$(MANDIR) endif -- 2.47.3