mirror of
https://github.com/SELinuxProject/selinux
synced 2025-01-23 13:53:26 +00:00
6aec573f80
Added new man page selinux_config(5) detailing the SELinux config file format to new man/man5 directory plus Makefile. Signed-off-by: Richard Haines <richard_c_haines@btinternet.com> Signed-off-by: Eric Paris <eparis@redhat.com> Acked-by: Dan Walsh <dwalsh@redhat.com>
9 lines
146 B
Makefile
9 lines
146 B
Makefile
# Installation directories.
|
|
MAN5DIR ?= $(DESTDIR)/usr/share/man/man5
|
|
|
|
all:
|
|
|
|
install: all
|
|
mkdir -p $(MAN5DIR)
|
|
install -m 644 man5/*.5 $(MAN5DIR)
|