mirror of
https://github.com/SELinuxProject/selinux
synced 2025-02-17 10:06:51 +00:00
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>
29 lines
570 B
Makefile
29 lines
570 B
Makefile
# Installation directories.
|
|
PREFIX ?= $(DESTDIR)/usr
|
|
INCLUDEDIR ?= $(PREFIX)/include
|
|
BINDIR ?= $(PREFIX)/bin
|
|
LIBDIR ?= $(PREFIX)/lib
|
|
MANDIR ?= $(PREFIX)/share/man
|
|
LIBSEPOLA ?= $(LIBDIR)/libsepol.a
|
|
|
|
CFLAGS ?= -Werror -Wall -W
|
|
|
|
all: semodule_deps
|
|
|
|
semodule_deps: semodule_deps.o $(LIBSEPOLA)
|
|
|
|
install: all
|
|
-mkdir -p $(BINDIR)
|
|
install -m 755 semodule_deps $(BINDIR)
|
|
test -d $(MANDIR)/man8 || install -m 755 -d $(MANDIR)/man8
|
|
install -m 644 semodule_deps.8 $(MANDIR)/man8/
|
|
|
|
relabel:
|
|
|
|
clean:
|
|
-rm -f semodule_deps *.o
|
|
|
|
indent:
|
|
../../scripts/Lindent $(wildcard *.[ch])
|
|
|