mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-22 22:12:16 +00:00
40 lines
890 B
Makefile
40 lines
890 B
Makefile
|
# Installation directories.
|
||
|
PREFIX ?= ${DESTDIR}/usr
|
||
|
SBINDIR ?= $(DESTDIR)/sbin
|
||
|
MANDIR = $(PREFIX)/share/man
|
||
|
LIBDIR ?= $(PREFIX)/lib
|
||
|
|
||
|
AUDITH = $(shell ls /usr/include/libaudit.h 2>/dev/null)
|
||
|
|
||
|
CFLAGS = -Werror -Wall -W
|
||
|
override CFLAGS += -D_FILE_OFFSET_BITS=64 -I$(PREFIX)/include
|
||
|
LDLIBS = -lselinux -lsepol -L$(LIBDIR)
|
||
|
|
||
|
ifeq (${AUDITH}, /usr/include/libaudit.h)
|
||
|
override CFLAGS += -DUSE_AUDIT
|
||
|
LDLIBS += -laudit
|
||
|
endif
|
||
|
|
||
|
all: setfiles restorecon
|
||
|
|
||
|
setfiles: setfiles.o
|
||
|
|
||
|
restorecon: setfiles
|
||
|
ln -sf setfiles restorecon
|
||
|
|
||
|
install: all
|
||
|
[ -d $(MANDIR)/man8 ] || mkdir -p $(MANDIR)/man8
|
||
|
-mkdir -p $(SBINDIR)
|
||
|
install -m 755 setfiles $(SBINDIR)
|
||
|
(cd $(SBINDIR) && ln -sf setfiles restorecon)
|
||
|
install -m 644 setfiles.8 restorecon.8 $(MANDIR)/man8
|
||
|
|
||
|
clean:
|
||
|
rm -f setfiles restorecon *.o
|
||
|
|
||
|
indent:
|
||
|
../../scripts/Lindent $(wildcard *.[ch])
|
||
|
|
||
|
relabel: install
|
||
|
/sbin/restorecon $(SBINDIR)/setfiles
|