summaryrefslogtreecommitdiff
path: root/tests/Makefile
blob: abe6b5b6d1c55c6628561b60286d2f41c0d2ada8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
include ../config.mk

CPPFLAGS += -I ../
CFLAGS   += -fPIC -Wpedantic

TEST_PROGS = test-handlers \
			 test-map      \
			 test-shortcut \
			 test-util

all: $(TEST_PROGS)
	LD_LIBRARY_PATH="$(LD_LIBRARY_PATH):." gtester --verbose $(TEST_PROGS)

${TEST_PROGS}: $(LIBTARGET)

clean:
	rm -f $(TEST_PROGS)