Author: Daniel J Walsh
Email: dwalsh@redhat.com Subject: We have moved matchpathcon to /sbin from /usr/sbin Date: Wed, 01 Apr 2009 10:21:53 -0400 Some init scripts wanted to use matchpathcon before /usr is mounted. Author: Chad Sellers Email: csellers@tresys.com Added matchpathcon to clean target Signed-off-by: Chad Sellers <csellers@tresys.com>
This commit is contained in:
parent
a4af847dc6
commit
72d535fdb8
1 changed files with 9 additions and 4 deletions
|
@ -2,28 +2,33 @@
|
|||
PREFIX ?= $(DESTDIR)/usr
|
||||
LIBDIR ?= $(PREFIX)/lib
|
||||
BINDIR ?= $(PREFIX)/sbin
|
||||
_BINDIR ?= $(DESTDIR)/sbin
|
||||
|
||||
CFLAGS ?= -Wall
|
||||
override CFLAGS += -I../include -D_GNU_SOURCE $(EMFLAGS)
|
||||
LDLIBS += -L../src -lselinux -L$(LIBDIR)
|
||||
|
||||
TARGETS=$(patsubst %.c,%,$(wildcard *.c))
|
||||
|
||||
|
||||
ifeq ($(DISABLE_AVC),y)
|
||||
UNUSED_TARGETS+=compute_av compute_create compute_member compute_relabel
|
||||
endif
|
||||
ifeq ($(DISABLE_BOOL),y)
|
||||
UNUSED_TARGETS+=getsebool togglesebool
|
||||
endif
|
||||
TARGETS:= $(filter-out $(UNUSED_TARGETS), $(TARGETS))
|
||||
TARGETS:= $(filter-out $(UNUSED_TARGETS) matchpathcon, $(TARGETS))
|
||||
|
||||
all: $(TARGETS)
|
||||
all: $(TARGETS) matchpathcon
|
||||
|
||||
install: all
|
||||
-mkdir -p $(BINDIR)
|
||||
install -m 755 $(TARGETS) $(BINDIR)
|
||||
|
||||
-mkdir -p $(_BINDIR)
|
||||
install -m 755 matchpathcon $(_BINDIR)
|
||||
(cd $(BINDIR); ln -fs ../../sbin/matchpathcon)
|
||||
clean:
|
||||
rm -f $(TARGETS) *.o
|
||||
rm -f $(TARGETS) matchpathcon *.o *~
|
||||
|
||||
indent:
|
||||
../../scripts/Lindent $(wildcard *.[ch])
|
||||
|
|
Loading…
Reference in a new issue