2008-08-19 19:30:36 +00:00
|
|
|
# Installation directories.
|
|
|
|
PREFIX ?= $(DESTDIR)/usr
|
|
|
|
INCDIR ?= $(PREFIX)/include/selinux
|
|
|
|
|
2011-09-14 18:54:34 +00:00
|
|
|
all:
|
|
|
|
|
|
|
|
install: all
|
2008-08-19 19:30:36 +00:00
|
|
|
test -d $(INCDIR) || install -m 755 -d $(INCDIR)
|
|
|
|
install -m 644 $(wildcard selinux/*.h) $(INCDIR)
|
|
|
|
|
|
|
|
indent:
|
|
|
|
../../scripts/Lindent $(wildcard selinux/*.h)
|
|
|
|
|
2012-01-27 19:00:34 +00:00
|
|
|
distclean clean:
|
|
|
|
-rm -f selinux/*~
|
|
|
|
|