1# Installation directories.
2PREFIX ?= $(DESTDIR)/usr
3INCDIR ?= $(PREFIX)/include/sepol
4
5all:
6
7install: all
8	test -d $(INCDIR) || install -m 755 -d $(INCDIR)
9	test -d $(INCDIR)/policydb || install -m 755 -d $(INCDIR)/policydb
10	install -m 644 $(wildcard sepol/*.h) $(INCDIR)
11	install -m 644 $(wildcard sepol/policydb/*.h) $(INCDIR)/policydb
12
13indent:
14	../../scripts/Lindent $(wildcard sepol/*.h)
15