selinux/python/audit2allow/Makefile
Stephen Smalley b97d959a6a Move policycoreutils/sepolgen-ifgen into python/audit2allow.
Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
2016-11-16 11:19:51 -05:00

42 lines
935 B
Makefile

PYTHON ?= python
# Installation directories.
PREFIX ?= $(DESTDIR)/usr
BINDIR ?= $(PREFIX)/bin
LIBDIR ?= $(PREFIX)/lib
MANDIR ?= $(PREFIX)/share/man
LOCALEDIR ?= /usr/share/locale
INCLUDEDIR ?= $(PREFIX)/include
CFLAGS ?= -Werror -Wall -W
override CFLAGS += -I$(INCLUDEDIR)
LDLIBS = $(LIBDIR)/libsepol.a
all: audit2why sepolgen-ifgen-attr-helper
sepolgen-ifgen-attr-helper: sepolgen-ifgen-attr-helper.o
audit2why:
ln -sf audit2allow audit2why
test: all
@$(PYTHON) test_audit2allow.py -v
install: all
-mkdir -p $(BINDIR)
install -m 755 audit2allow $(BINDIR)
(cd $(BINDIR); ln -sf audit2allow audit2why)
install -m 755 sepolgen-ifgen-attr-helper $(BINDIR)
install -m 755 sepolgen-ifgen $(BINDIR)
-mkdir -p $(MANDIR)/man1
install -m 644 audit2allow.1 $(MANDIR)/man1/
install -m 644 audit2why.1 $(MANDIR)/man1/
clean:
rm -f *~ *.o sepolgen-ifgen-attr-helper
indent:
../../scripts/Lindent $(wildcard *.[ch])
relabel: ;