mirror of
https://github.com/SELinuxProject/selinux
synced 2025-02-09 14:17:31 +00:00
SELinux Project contribution of mcstrans. mcstrans is a userland package specific to SELinux which allows system administrators to define sensitivity levels and categories and provides a daemon for their translation into human readable form. This version is a merge of Joe Nalls git tree ( http://github.com/joenall/mcstrans) and patches supplied by Dan Walsh and others at RedHat. Ted Signed-off-by: Steve Lawrence <slawrence@tresys.com>
11 lines
184 B
Makefile
11 lines
184 B
Makefile
# Installation directories.
|
|
MAN8DIR ?= $(DESTDIR)/usr/share/man/man8
|
|
|
|
install:
|
|
mkdir -p $(MAN8DIR)
|
|
install -m 644 man8/*.8 $(MAN8DIR)
|
|
|
|
clean:
|
|
-rm -f *~ \#*
|
|
-rm -f man8/*~ man8/\#*
|