mirror of
https://github.com/SELinuxProject/selinux
synced 2025-02-09 14:17:31 +00:00
13 lines
194 B
Makefile
13 lines
194 B
Makefile
# Installation directories.
|
|
MAN8DIR ?= $(DESTDIR)/usr/share/man/man8
|
|
|
|
all:
|
|
|
|
install: all
|
|
mkdir -p $(MAN8DIR)
|
|
install -m 644 man8/*.8 $(MAN8DIR)
|
|
|
|
clean:
|
|
-rm -f *~ \#*
|
|
-rm -f man8/*~ man8/\#*
|