mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-12 09:05:00 +00:00
48dc232627
Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
23 lines
393 B
Makefile
23 lines
393 B
Makefile
# Installation directories.
|
|
PREFIX ?= $(DESTDIR)/usr
|
|
BINDIR ?= $(PREFIX)/bin
|
|
USRSBINDIR ?= $(PREFIX)/sbin
|
|
SBINDIR ?= $(DESTDIR)/sbin
|
|
MANDIR ?= $(PREFIX)/share/man
|
|
LOCALEDIR ?= $(PREFIX)/share/locale
|
|
|
|
.PHONY: all
|
|
all: fixfiles
|
|
|
|
install: all
|
|
-mkdir -p $(BINDIR)
|
|
install -m 755 fixfiles $(SBINDIR)
|
|
-mkdir -p $(MANDIR)/man8
|
|
install -m 644 fixfiles.8 $(MANDIR)/man8/
|
|
|
|
clean:
|
|
|
|
indent:
|
|
|
|
relabel:
|