mirror of
https://github.com/topjohnwu/selinux.git
synced 2024-11-27 05:20:50 +00:00
fc7a4e0798
Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com>
14 lines
224 B
Makefile
14 lines
224 B
Makefile
# Installation directories.
|
|
PREFIX ?= /usr
|
|
MAN8DIR ?= $(PREFIX)/share/man/man8
|
|
|
|
all:
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(MAN8DIR)
|
|
install -m 644 man8/*.8 $(DESTDIR)$(MAN8DIR)
|
|
|
|
clean:
|
|
-rm -f *~ \#*
|
|
-rm -f man8/*~ man8/\#*
|