File: Makefile

package info (click to toggle)
policycoreutils 1.32-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,804 kB
  • ctags: 717
  • sloc: ansic: 5,211; python: 2,505; makefile: 443; sh: 438; perl: 120
file content (30 lines) | stat: -rw-r--r-- 581 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Installation directories.
PREFIX ?= ${DESTDIR}/usr
BINDIR ?= $(PREFIX)/sbin
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 -lselinux -lsepol -L$(LIBDIR)

TARGETS=audit2why

all: $(TARGETS)

install: all
	-mkdir -p $(BINDIR)
	install -m 755 $(TARGETS) $(BINDIR)
	-mkdir -p $(MANDIR)/man8
	install -m 644 audit2why.8 $(MANDIR)/man8/

clean:
	-rm -f $(TARGETS) *.o

indent:
	../../Lindent $(wildcard *.[ch])

relabel: