mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-12 17:15:00 +00:00
46d294f645
Move everything into /usr/* and just put links from /*. The whole /usr thing hasn't really worked in all situations for a long long time. Just accept that fact and move along. Signed-off-by: Eric Paris <eparis@redhat.com> Acked-by: Dan Walsh <dwalsh@redhat.com>
17 lines
367 B
Makefile
17 lines
367 B
Makefile
# Installation directories.
|
|
MAN8DIR ?= $(DESTDIR)/usr/share/man/man8
|
|
MAN5DIR ?= $(DESTDIR)/usr/share/man/man5
|
|
MAN3DIR ?= $(DESTDIR)/usr/share/man/man3
|
|
|
|
all:
|
|
|
|
install: all
|
|
mkdir -p $(MAN3DIR)
|
|
mkdir -p $(MAN5DIR)
|
|
mkdir -p $(MAN8DIR)
|
|
install -m 644 man3/*.3 $(MAN3DIR)
|
|
install -m 644 man5/*.5 $(MAN5DIR)
|
|
install -m 644 man8/*.8 $(MAN8DIR)
|
|
|
|
indent distclean clean:
|