blob: fd2115a84b3ed3ddf1745895fb61a8ff797f5591 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
check_PROGRAMS = \
tests/parse_control.basic \
tests/resolve_deps.basic \
tests/arch_is_concerned \
tests/plat_is_concerned \
tests/reduce_deps
TESTS = $(check_PROGRAMS)
tests_parse_control_basic_SOURCES = \
tests/parse_control.basic.sh \
tests/parse_control.common.sh \
tests/common.sh \
src/output.sh \
src/control.sh
tests_parse_control_basic_LDADD = $(tests_parse_control_basic_SOURCES:.sh=.sho)
CLEANFILES += $(tests_parse_control_basic_LDADD)
tests_resolve_deps_basic_SOURCES = \
tests/resolve_deps.basic.sh \
tests/aux/common.sh \
tests/aux/tap-functions.sh \
src/deps.sh
tests_resolve_deps_basic_LDADD = $(tests_resolve_deps_basic_SOURCES:.sh=.sho)
CLEANFILES += $(tests_resolve_deps_basic_LDADD)
tests_arch_is_concerned_SOURCES = \
tests/arch_is_concerned.sh \
tests/aux/tap-functions.sh \
src/archplat.sh
tests_arch_is_concerned_LDADD = $(tests_arch_is_concerned_SOURCES:.sh=.sho)
CLEANFILES += $(tests_arch_is_concerned_LDADD)
tests_plat_is_concerned_SOURCES = \
tests/plat_is_concerned.sh \
tests/aux/tap-functions.sh \
src/archplat.sh
tests_plat_is_concerned_LDADD = $(tests_plat_is_concerned_SOURCES:.sh=.sho)
CLEANFILES += $(tests_plat_is_concerned_LDADD)
tests_reduce_deps_SOURCES = \
tests/reduce_deps.sh \
tests/aux/tap-functions.sh \
src/deps.sh \
src/archplat.sh
tests_reduce_deps_LDADD = $(tests_reduce_deps_SOURCES:.sh=.sho)
CLEANFILES += $(tests_reduce_deps_LDADD)
|