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