mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-15 02:24:38 +00:00
8 lines
137 B
Makefile
8 lines
137 B
Makefile
# Installation directories.
|
|
MAN3DIR ?= $(DESTDIR)/usr/share/man/man3
|
|
|
|
install:
|
|
mkdir -p $(MAN3DIR)
|
|
install -m 644 man3/*.3 $(MAN3DIR)
|
|
|