mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-10 16:15:18 +00:00
39b5a40295
Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
13 lines
164 B
Makefile
13 lines
164 B
Makefile
# Installation directories.
|
|
MAN5DIR ?= $(DESTDIR)/usr/share/man/man5
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
install: all
|
|
mkdir -p $(MAN5DIR)
|
|
install -m 644 man5/*.5 $(MAN5DIR)
|
|
|
|
relabel:
|