blob: 8ab9ce92692d7982e09693ea093853bf364fa0b6 [file] [log] [blame]
Joshua Brindle13cd4c82008-08-19 15:30:36 -04001# Installation directories.
Marcus Folkessonb24980e2018-02-14 10:57:04 +01002PREFIX ?= /usr
3INCDIR = $(PREFIX)/include/selinux
Joshua Brindle13cd4c82008-08-19 15:30:36 -04004
Guido Trentalanciaeb695e52011-09-14 14:54:34 -04005all:
6
7install: all
Marcus Folkessonb24980e2018-02-14 10:57:04 +01008 test -d $(DESTDIR)$(INCDIR) || install -m 755 -d $(DESTDIR)$(INCDIR)
9 install -m 644 $(wildcard selinux/*.h) $(DESTDIR)$(INCDIR)
Joshua Brindle13cd4c82008-08-19 15:30:36 -040010
Stephen Smalley39b5a402013-10-23 12:43:15 -040011relabel:
12
Joshua Brindle13cd4c82008-08-19 15:30:36 -040013indent:
14 ../../scripts/Lindent $(wildcard selinux/*.h)
15
Dan Walsh46d294f2012-01-27 14:00:34 -050016distclean clean:
17 -rm -f selinux/*~
18