1 # Installation directories. 2 PREFIX ?= $(DESTDIR)/usr 3 INCDIR ?= $(PREFIX)/include/selinux 4 5 all: 6 7 install: all 8 test -d $(INCDIR) || install -m 755 -d $(INCDIR) 9 install -m 644 $(wildcard selinux/*.h) $(INCDIR) 10 11 relabel: 12 13 indent: 14 ../../scripts/Lindent $(wildcard selinux/*.h) 15 16 distclean clean: 17 -rm -f selinux/*~ 18 19