mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-12 09:05:00 +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
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/\#*
|