blob: d05472c9fa4fbf4eb93efdc7a7885b3af214b122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
SUBDIRS = .
# Shell tests
SHTESTS = netconf_tests.sh
# Run shell 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)
|