mirror of
https://github.com/SELinuxProject/selinux
synced 2025-01-08 22:49:44 +00:00
fcb5d5cc72
The toolchain automatically handles them and they break cross compiling. LDFLAGS should also come before object files, some flags (eg, -Wl,as-needed) can break things if they are in the wrong place) Gentoo-Bug: https://bugs.gentoo.org/500674 Signed-off-by: Jason Zaman <jason@perfinion.com>
35 lines
755 B
Makefile
35 lines
755 B
Makefile
# Installation directories.
|
|
PREFIX ?= $(DESTDIR)/usr
|
|
INCLUDEDIR ?= $(PREFIX)/include
|
|
SBINDIR ?= $(PREFIX)/sbin
|
|
MANDIR = $(PREFIX)/share/man
|
|
LIBDIR ?= $(PREFIX)/lib
|
|
BASHCOMPLETIONDIR ?= $(DESTDIR)/usr/share/bash-completion/completions
|
|
|
|
CFLAGS ?= -Werror -Wall -W
|
|
LDLIBS = -lsepol -lselinux -lsemanage
|
|
SETSEBOOL_OBJS = setsebool.o
|
|
|
|
BASHCOMPLETIONS=setsebool-bash-completion.sh
|
|
|
|
all: setsebool
|
|
|
|
setsebool: $(SETSEBOOL_OBJS)
|
|
|
|
install: all
|
|
-mkdir -p $(SBINDIR)
|
|
install -m 755 setsebool $(SBINDIR)
|
|
-mkdir -p $(MANDIR)/man8
|
|
install -m 644 setsebool.8 $(MANDIR)/man8/
|
|
-mkdir -p $(BASHCOMPLETIONDIR)
|
|
install -m 644 $(BASHCOMPLETIONS) $(BASHCOMPLETIONDIR)/setsebool
|
|
|
|
relabel:
|
|
|
|
clean:
|
|
-rm -f setsebool *.o
|
|
|
|
indent:
|
|
../../scripts/Lindent $(wildcard *.[ch])
|
|
|