mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-11 16:44:59 +00:00
beb7dedf7b
Empty clean target just so you can run make clean Signed-off-by: Eric Paris <eparis@redhat.com> Acked-by: Dan Walsh <dwalsh@redhat.com>
11 lines
154 B
Makefile
11 lines
154 B
Makefile
# Installation directories.
|
|
MAN5DIR ?= $(DESTDIR)/usr/share/man/man5
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
install: all
|
|
mkdir -p $(MAN5DIR)
|
|
install -m 644 man5/*.5 $(MAN5DIR)
|