blob: e2b6d94345ca797c621970ea5644e42eef669bdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SUBDIRS = .
# Shell tests
SHTESTS = keactrl_tests.sh
# As with every file generated by ./configure, clean them up when running
# "make distclean", but not on "make clean".
DISTCLEANFILES = $(SHTESTS)
if HAVE_GTEST
# Run shell tests on "make check".
check_SCRIPTS = $(SHTESTS)
TESTS = $(SHTESTS)
endif
# Don't install shell tests.
noinst_SCRIPTS = $(SHTESTS)
|