mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-12 00:55:03 +00:00
11 lines
258 B
Makefile
11 lines
258 B
Makefile
# Installation directories.
|
|
PREFIX ?= $(DESTDIR)/usr
|
|
INCDIR ?= $(PREFIX)/include/semanage
|
|
|
|
install:
|
|
test -d $(INCDIR) || install -m 755 -d $(INCDIR)
|
|
install -m 644 $(wildcard semanage/*.h) $(INCDIR)
|
|
|
|
indent:
|
|
../../scripts/Lindent $(wildcard semanage/*.h)
|