2008-08-19 19:30:36 +00:00
|
|
|
# Installation directories.
|
|
|
|
PREFIX ?= $(DESTDIR)/usr
|
|
|
|
INCDIR ?= $(PREFIX)/include/semanage
|
|
|
|
|
2011-09-14 18:54:34 +00:00
|
|
|
all:
|
|
|
|
|
|
|
|
install: all
|
2008-08-19 19:30:36 +00:00
|
|
|
test -d $(INCDIR) || install -m 755 -d $(INCDIR)
|
|
|
|
install -m 644 $(wildcard semanage/*.h) $(INCDIR)
|
|
|
|
|
|
|
|
indent:
|
|
|
|
../../scripts/Lindent $(wildcard semanage/*.h)
|