summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2014-02-21 14:04:34 +0000
committerDavid Howells <dhowells@redhat.com>2014-02-21 14:33:26 +0000
commit779eb0dfa438ff5040a5652a7155c46083b32e43 (patch)
tree10badaa340165f84cc2a98f7c3967869811399c4 /Makefile
parentf4865fb0afc6656e6c4a6e43370842226bbaa636 (diff)
downloadkeyutils-779eb0dfa438ff5040a5652a7155c46083b32e43.tar.gz
Doc: Add man7 pages for various keyrings concepts
Add manual pages to section 7 describing various keyrings concepts. Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 0b2095f..c904eaf 100644
--- a/Makefile
+++ b/Makefile
@@ -13,6 +13,7 @@ MANDIR := /usr/share/man
MAN1 := $(MANDIR)/man1
MAN3 := $(MANDIR)/man3
MAN5 := $(MANDIR)/man5
+MAN7 := $(MANDIR)/man7
MAN8 := $(MANDIR)/man8
INCLUDEDIR := /usr/include
LNS := ln -sf
@@ -173,6 +174,8 @@ endif
$(INSTALL) -m 0644 $(wildcard man/*.3) $(DESTDIR)$(MAN3)
mkdir -p $(DESTDIR)$(MAN5)
$(INSTALL) -m 0644 $(wildcard man/*.5) $(DESTDIR)$(MAN5)
+ mkdir -p $(DESTDIR)$(MAN7)
+ $(INSTALL) -m 0644 $(wildcard man/*.7) $(DESTDIR)$(MAN7)
mkdir -p $(DESTDIR)$(MAN8)
$(INSTALL) -m 0644 $(wildcard man/*.8) $(DESTDIR)$(MAN8)
$(LNS) keyctl_describe.3 $(DESTDIR)$(MAN3)/keyctl_describe_alloc.3