mirror of
https://github.com/SELinuxProject/selinux
synced 2025-01-05 21:19:41 +00:00
6cfebe787e
Seems to have been there to allow for some sed substitution over the text. Now that this is gone, the redundant intermediate file can be removed, too. Signed-off-by: Ondrej Mosnacek <omosnace@redhat.com>
49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
# Installation directories.
|
|
LINGUAS ?= ru
|
|
PREFIX ?= /usr
|
|
SBINDIR ?= /sbin
|
|
MANDIR = $(PREFIX)/share/man
|
|
AUDITH ?= $(shell test -f /usr/include/libaudit.h && echo y)
|
|
|
|
CFLAGS ?= -g -Werror -Wall -W
|
|
override LDLIBS += -lselinux -lsepol
|
|
|
|
ifeq ($(AUDITH), y)
|
|
override CFLAGS += -DUSE_AUDIT
|
|
override LDLIBS += -laudit
|
|
endif
|
|
|
|
all: setfiles restorecon restorecon_xattr
|
|
|
|
setfiles: setfiles.o restore.o
|
|
|
|
restorecon: setfiles
|
|
ln -sf setfiles restorecon
|
|
|
|
restorecon_xattr: restorecon_xattr.o restore.o
|
|
|
|
install: all
|
|
[ -d $(DESTDIR)$(MANDIR)/man8 ] || mkdir -p $(DESTDIR)$(MANDIR)/man8
|
|
-mkdir -p $(DESTDIR)$(SBINDIR)
|
|
install -m 755 setfiles $(DESTDIR)$(SBINDIR)
|
|
(cd $(DESTDIR)$(SBINDIR) && ln -sf setfiles restorecon)
|
|
install -m 755 restorecon_xattr $(DESTDIR)$(SBINDIR)
|
|
install -m 644 setfiles.8 $(DESTDIR)$(MANDIR)/man8/setfiles.8
|
|
install -m 644 restorecon.8 $(DESTDIR)$(MANDIR)/man8/restorecon.8
|
|
install -m 644 restorecon_xattr.8 $(DESTDIR)$(MANDIR)/man8/restorecon_xattr.8
|
|
for lang in $(LINGUAS) ; do \
|
|
if [ -e $${lang} ] ; then \
|
|
[ -d $(DESTDIR)$(MANDIR)/$${lang}/man8 ] || mkdir -p $(DESTDIR)$(MANDIR)/$${lang}/man8 ; \
|
|
install -m 644 $${lang}/*.8 $(DESTDIR)$(MANDIR)/$${lang}/man8/ ; \
|
|
fi ; \
|
|
done
|
|
|
|
clean:
|
|
rm -f setfiles restorecon restorecon_xattr *.o
|
|
|
|
indent:
|
|
../../scripts/Lindent $(wildcard *.[ch])
|
|
|
|
relabel: install
|
|
$(DESTDIR)$(SBINDIR)/restorecon $(DESTDIR)$(SBINDIR)/setfiles $(DESTDIR)$(SBINDIR)/restorecon_xattr
|