20 lines
278 B
Makefile
20 lines
278 B
Makefile
|
# Installation directories.
|
||
|
PREFIX ?= $(DESTDIR)/usr
|
||
|
LIBEXECDIR ?= $(PREFIX)/libexec
|
||
|
SELINUXEXECDIR ?= $(LIBEXECDIR)/selinux/
|
||
|
|
||
|
all:
|
||
|
|
||
|
install: all
|
||
|
-mkdir -p $(SELINUXEXECDIR)
|
||
|
install -m 755 semanage_migrate_store $(SELINUXEXECDIR)
|
||
|
|
||
|
clean:
|
||
|
|
||
|
distclean: clean
|
||
|
|
||
|
indent:
|
||
|
|
||
|
relabel:
|
||
|
|