summaryrefslogtreecommitdiff
path: root/include/Makefile
blob: 2ef418c44a172b4467d81d9ea7fec7e9e7091ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Installation directories.
PREFIX ?= $(DESTDIR)/usr
INCDIR ?= $(PREFIX)/include/sepol

all:

install: all
	test -d $(INCDIR) || install -m 755 -d $(INCDIR)
	test -d $(INCDIR)/policydb || install -m 755 -d $(INCDIR)/policydb
	install -m 644 $(wildcard sepol/*.h) $(INCDIR)
	install -m 644 $(wildcard sepol/policydb/*.h) $(INCDIR)/policydb

indent:
	../../scripts/Lindent $(wildcard sepol/*.h)