aboutsummaryrefslogtreecommitdiff
path: root/src/tests/Makefile.am
blob: 74255dbcddeecb582b2b5dd05aae56821aa58205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
INCLUDES = \
	-I$(top_srcdir)/src

noinst_PROGRAMS = test-modem-helpers

test_modem_helpers_SOURCES = \
	test-modem-helpers.c

test_modem_helpers_CPPFLAGS = \
	$(MM_CFLAGS)

test_modem_helpers_LDADD = \
	$(top_builddir)/src/libmodem-helpers.la \
	$(MM_LIBS)

if WITH_TESTS

check-local: test-modem-helpers
	$(abs_builddir)/test-modem-helpers

endif