blob: ab3b68e4a6c64a7769a889b790c6e4714c67563f (
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
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
TESTS = \
udev-test.pl \
rules-test.sh
check_DATA = \
test/sys
test/sys:
$(AM_V_at)$(MKDIR_P) $(dir $@)
$(AM_V_GEN)tar -C $(top_builddir)/test/ -xJf $(top_srcdir)/test/sys.tar.xz
test-sys-distclean:
-rm -rf $(top_builddir)/test/sys
DISTCLEAN_LOCAL_HOOKS = \
test-sys-distclean
EXTRA_DIST = \
sys.tar.xz \
udev-test.pl \
rules-test.sh \
rule-syntax-check.py
|