summaryrefslogtreecommitdiff
path: root/test/Makefile.am
blob: 4daf511a26f63efe1f715cd8ee79891c8a5b64b5 (plain)
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
MAINTAINERCLEANFILES = Makefile.in

AM_CXXFLAGS = @DEFINES@

TESTS = test-url test-http test-args test-xdg test-paths test-strings \
        test-observers

check_PROGRAMS = $(TESTS)

test_url_SOURCES = test-url.cc
test_url_LDADD = $(top_builddir)/src/libtp.a

test_http_SOURCES = test-http.cc
test_http_LDADD = $(top_builddir)/src/libtp.a

test_args_SOURCES = test-args.cc
test_args_LDADD = $(top_builddir)/src/libtp.a

test_xdg_SOURCES = test-xdg.cc
test_xdg_LDADD = $(top_builddir)/src/libtp.a

test_strings_SOURCES = test-strings.cc
test_strings_LDADD = $(top_builddir)/src/libtp.a

test_paths_SOURCES = test-paths.cc
test_paths_LDADD = $(top_builddir)/src/libtp.a

test_observers_SOURCES = test-observers.cc