mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-13 01:24:49 +00:00
e15f61e5d2
This patch solves the following issues: - DESTDIR is needed during compile time to compute library and header paths which it should not. - Installing with both DESTDIR and PREFIX set gives us odd paths - Make usage of DESTDIR and PREFIX more standard Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com>
24 lines
597 B
Makefile
24 lines
597 B
Makefile
# Add your test source files here:
|
|
SOURCES = $(sort $(wildcard *.c))
|
|
|
|
###########################################################################
|
|
|
|
EXECUTABLE = libsemanage-tests
|
|
CFLAGS += -g -O0 -Wall -W -Wundef -Wmissing-noreturn -Wmissing-format-attribute -Wno-unused-parameter
|
|
override CFLAGS += -I../src -I../include
|
|
override LDLIBS += -lcunit -lbz2 -laudit -lselinux -lsepol
|
|
|
|
OBJECTS = $(SOURCES:.c=.o)
|
|
|
|
all: $(EXECUTABLE)
|
|
|
|
$(EXECUTABLE): $(OBJECTS) ../src/libsemanage.a
|
|
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|
|
|
|
clean distclean:
|
|
rm -rf $(OBJECTS) $(EXECUTABLE)
|
|
|
|
test: all
|
|
./$(EXECUTABLE)
|
|
|