mirror of
https://github.com/SELinuxProject/selinux
synced 2025-02-10 14:47:49 +00:00
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/\#*
|