]> git.proxmox.com Git - mirror_zfs-debian.git/blame - scripts/Makefile.am
Add FAILFAST support
[mirror_zfs-debian.git] / scripts / Makefile.am
CommitLineData
a5b4d635 1SUBDIRS = zpool-config zpool-layout zpios-test zpios-profile
6283f55e 2
c9c0d073 3pkglibexecdir = $(libexecdir)/@PACKAGE@
6283f55e
BB
4dist_pkglibexec_SCRIPTS = \
5 $(top_builddir)/scripts/common.sh \
6 $(top_srcdir)/scripts/zconfig.sh \
7 $(top_srcdir)/scripts/zfs.sh \
8 $(top_srcdir)/scripts/zpool-create.sh \
9 $(top_srcdir)/scripts/zpios.sh \
10 $(top_srcdir)/scripts/zpios-sanity.sh \
11 $(top_srcdir)/scripts/zpios-survey.sh
12
13ZFS=$(top_builddir)/scripts/zfs.sh
14ZCONFIG=$(top_builddir)/scripts/zconfig.sh
15ZTEST=$(top_builddir)/cmd/ztest/ztest
16ZPIOS_SANITY=$(top_builddir)/scripts/zpios-sanity.sh
17
18all:
19 @list='$(dist_pkglibexec_SCRIPTS)'; \
20 for file in $$list; do \
21 link=$$(basename $$file); \
22 if [ ! -e $$link ]; then \
23 $(LN_S) $$file $$link; \
24 fi \
25 done
c9c0d073 26
6283f55e
BB
27clean:
28 @list='$(dist_pkglibexec_SCRIPTS)'; \
29 for file in $$list; do \
30 link=$$(basename $$file); \
31 if [ -L $$link ]; then \
32 $(RM) $$link; \
33 fi \
34 done
c9c0d073
BB
35
36check:
37 @echo
38 @echo -n "===================================="
39 @echo -n " ZTEST "
40 @echo "===================================="
41 @echo
42 @$(ZFS)
43 @$(ZTEST) -V
44 @$(ZFS) -u
45 @echo
46 @echo
47 @echo -n "==================================="
48 @echo -n " ZCONFIG "
49 @echo "==================================="
50 @echo
51 @$(ZCONFIG)
52 @echo
302ef151
BB
53 @echo -n "===================================="
54 @echo -n " ZPIOS "
55 @echo "===================================="
56 @echo
57 @$(ZFS)
58 @$(ZPIOS_SANITY)
59 @$(ZFS) -u
60 @echo