aboutsummaryrefslogtreecommitdiffstats
path: root/cli/test/Makefile.am
blob: b3be3c09e7249079656cf7cb8205d5a34fa82915 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
noinst_PROGRAMS = \
	test-helpers

test_helpers_SOURCES = \
	test-helpers.c \
	$(top_srcdir)/cli/qmicli-helpers.h \
	$(top_srcdir)/cli/qmicli-helpers.c

test_helpers_CPPFLAGS = \
	$(QMICLI_CFLAGS) \
	-I$(top_srcdir) \
	-I$(top_srcdir)/cli

test_helpers_LDADD = \
	$(QMICLI_LIBS)

if WITH_TESTS

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

endif