mirror of
https://github.com/SELinuxProject/selinux
synced 2025-01-03 20:22:05 +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>
15 lines
393 B
Makefile
15 lines
393 B
Makefile
# Installation directories.
|
|
PREFIX ?= $(DESTDIR)/usr
|
|
INCDIR ?= $(PREFIX)/include/sepol
|
|
|
|
all:
|
|
|
|
install: all
|
|
test -d $(INCDIR) || install -m 755 -d $(INCDIR)
|
|
test -d $(INCDIR)/policydb || install -m 755 -d $(INCDIR)/policydb
|
|
install -m 644 $(wildcard sepol/*.h) $(INCDIR)
|
|
install -m 644 $(wildcard sepol/policydb/*.h) $(INCDIR)/policydb
|
|
|
|
indent:
|
|
../../scripts/Lindent $(wildcard sepol/*.h)
|