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