mirror of
https://github.com/topjohnwu/selinux.git
synced 2024-12-05 01:56:27 +00:00
eb695e5a56
Change the default "make" target for the libraries from "install" to "all" in the makefiles. Signed-off-by: Guido Trentalancia <guido@trentalancia.com> Signed-off-by: Eric Paris <eparis@redhat.com> Acked-by: Dan Walsh <dwalsh@redhat.com>
13 lines
245 B
Makefile
13 lines
245 B
Makefile
# Installation directories.
|
|
MAN8DIR ?= $(DESTDIR)/usr/share/man/man8
|
|
MAN3DIR ?= $(DESTDIR)/usr/share/man/man3
|
|
|
|
all:
|
|
|
|
install: all
|
|
mkdir -p $(MAN3DIR)
|
|
mkdir -p $(MAN8DIR)
|
|
install -m 644 man3/*.3 $(MAN3DIR)
|
|
install -m 644 man8/*.8 $(MAN8DIR)
|
|
|