2008-08-19 19:30:36 +00:00
|
|
|
#
|
|
|
|
# Makefile for building the dispol program
|
|
|
|
#
|
|
|
|
PREFIX ?= $(DESTDIR)/usr
|
2017-06-20 14:49:57 +00:00
|
|
|
BINDIR ?= $(PREFIX)/bin
|
2013-05-10 12:45:12 +00:00
|
|
|
LIBDIR ?= $(PREFIX)/lib
|
2008-08-19 19:30:36 +00:00
|
|
|
INCLUDEDIR ?= $(PREFIX)/include
|
2017-01-14 14:38:25 +00:00
|
|
|
LIBSEPOLA ?= $(LIBDIR)/libsepol.a
|
2008-08-19 19:30:36 +00:00
|
|
|
|
2011-11-02 20:22:28 +00:00
|
|
|
CFLAGS ?= -g -Wall -W -Werror -O2 -pipe
|
2008-08-19 19:30:36 +00:00
|
|
|
|
|
|
|
all: dispol dismod
|
|
|
|
|
2017-01-14 14:38:25 +00:00
|
|
|
dispol: dispol.o $(LIBSEPOLA)
|
2008-08-19 19:30:36 +00:00
|
|
|
|
2017-01-14 14:38:25 +00:00
|
|
|
dismod: dismod.o $(LIBSEPOLA)
|
2008-08-19 19:30:36 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm -f dispol dismod *.o
|