19 lines
332 B
Makefile
19 lines
332 B
Makefile
# Installation directories.
|
|
PREFIX ?= /usr
|
|
INCDIR = $(PREFIX)/include/selinux
|
|
|
|
all:
|
|
|
|
install: all
|
|
test -d $(DESTDIR)$(INCDIR) || install -m 755 -d $(DESTDIR)$(INCDIR)
|
|
install -m 644 $(wildcard selinux/*.h) $(DESTDIR)$(INCDIR)
|
|
|
|
relabel:
|
|
|
|
indent:
|
|
../../scripts/Lindent $(wildcard selinux/*.h)
|
|
|
|
distclean clean:
|
|
-rm -f selinux/*~
|
|
|