File: Makefile

package info (click to toggle)
policycoreutils 2.0.49-8
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,024 kB
  • ctags: 677
  • sloc: ansic: 5,535; python: 2,125; sh: 452; makefile: 436
file content (29 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (2)
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
# Installation directories.
PREFIX ?= ${DESTDIR}/usr
INCLUDEDIR ?= $(PREFIX)/include
BINDIR ?= $(PREFIX)/bin
MANDIR ?= $(PREFIX)/share/man
LIBDIR ?= ${PREFIX}/lib

CFLAGS ?= -Werror -Wall -W
override CFLAGS += -I$(INCLUDEDIR)
LDLIBS = -lsepol -lselinux -L$(LIBDIR)

all: semodule_link

semodule_link:  semodule_link.o 

install: all
	-mkdir -p $(BINDIR)
	install -m 755 semodule_link $(BINDIR)
	test -d $(MANDIR)/man8 || install -m 755 -d $(MANDIR)/man8
	install -m 644 semodule_link.8 $(MANDIR)/man8/

relabel:

clean:
	-rm -f semodule_link *.o

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