]> git.proxmox.com Git - mirror_zfs.git/blame_incremental - Makefile.am
zstreamdump dumps core printing truncated nvlist
[mirror_zfs.git] / Makefile.am
... / ...
CommitLineData
1ACLOCAL_AMFLAGS = -I config
2
3include config/rpm.am
4include config/deb.am
5include config/tgz.am
6
7SUBDIRS = include rpm
8if CONFIG_USER
9SUBDIRS += udev etc man scripts lib tests cmd contrib
10endif
11if CONFIG_KERNEL
12SUBDIRS += module
13
14extradir = $(prefix)/src/zfs-$(VERSION)
15extra_HEADERS = zfs.release.in zfs_config.h.in
16
17kerneldir = $(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION)
18nodist_kernel_HEADERS = zfs.release zfs_config.h module/$(LINUX_SYMBOLS)
19endif
20
21AUTOMAKE_OPTIONS = foreign
22EXTRA_DIST = autogen.sh copy-builtin
23EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
24EXTRA_DIST += META AUTHORS COPYRIGHT LICENSE NOTICE README.md
25
26@CODE_COVERAGE_RULES@
27
28distclean-local::
29 -$(RM) -R autom4te*.cache
30 -find . \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
31 -o -name .pc -o -name .hg -o -name .git \) -prune -o \
32 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
33 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
34 -o -name '.*.rej' -o -size 0 -o -name '*%' -o -name '.*.cmd' \
35 -o -name 'core' -o -name 'Makefile' -o -name 'Module.symvers' \
36 -o -name '*.order' -o -name '*.markers' -o -name '*.gcda' \
37 -o -name '*.gcno' \) \
38 -type f -print | xargs $(RM)
39
40all-local:
41 -${top_srcdir}/scripts/zfs-tests.sh -c
42
43dist-hook:
44 sed -i 's/Release:[[:print:]]*/Release: $(RELEASE)/' \
45 $(distdir)/META
46
47# For compatibility, create a matching spl-x.y.z directly which contains
48# symlinks to the updated header and object file locations. These
49# compatibility links will be removed in the next major release.
50if CONFIG_KERNEL
51install-data-hook:
52 rm -rf $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
53 mkdir $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
54 cd $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
55 ln -s ../zfs-$(VERSION)/include/spl include && \
56 ln -s ../zfs-$(VERSION)/$(LINUX_VERSION) $(LINUX_VERSION) && \
57 ln -s ../zfs-$(VERSION)/zfs_config.h.in spl_config.h.in && \
58 ln -s ../zfs-$(VERSION)/zfs.release.in spl.release.in && \
59 cd $(DESTDIR)$(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION) && \
60 ln -fs zfs_config.h spl_config.h && \
61 ln -fs zfs.release spl.release
62endif
63
64checkstyle: cstyle shellcheck flake8 commitcheck mancheck testscheck
65
66commitcheck:
67 @if git rev-parse --git-dir > /dev/null 2>&1; then \
68 ${top_srcdir}/scripts/commitcheck.sh; \
69 fi
70
71cstyle:
72 @find ${top_srcdir} -name '*.[hc]' ! -name 'zfs_config.*' \
73 ! -name '*.mod.c' -type f \
74 -exec ${top_srcdir}/scripts/cstyle.pl -cpP {} \+
75
76shellcheck:
77 @if type shellcheck > /dev/null 2>&1; then \
78 shellcheck --exclude=SC1090 --format=gcc \
79 $$(find ${top_srcdir}/scripts/*.sh -type f) \
80 $$(find ${top_srcdir}/cmd/zed/zed.d/*.sh -type f) \
81 $$(find ${top_srcdir}/cmd/zpool/zpool.d/* -executable); \
82 fi
83
84mancheck:
85 @if type mandoc > /dev/null 2>&1; then \
86 find ${top_srcdir}/man/man8 -type f -name 'zfs.8' \
87 -o -name 'zpool.8' -o -name 'zdb.8' \
88 -o -name 'zgenhostid.8' | \
89 xargs mandoc -Tlint -Werror; \
90 fi
91
92testscheck:
93 @find ${top_srcdir}/tests/zfs-tests/tests -type f \
94 \( -name '*.ksh' -not -executable \) -o \
95 \( -name '*.kshlib' -executable \) -o \
96 \( -name '*.cfg' -executable \) | \
97 xargs -r stat -c '%A %n' | \
98 awk '{c++; print} END {if(c>0) exit 1}'
99
100lint: cppcheck paxcheck
101
102cppcheck:
103 @if type cppcheck > /dev/null 2>&1; then \
104 cppcheck --quiet --force --error-exitcode=2 --inline-suppr \
105 --suppressions-list=.github/suppressions.txt \
106 -UHAVE_SSE2 -UHAVE_AVX512F -UHAVE_UIO_ZEROCOPY \
107 -UHAVE_DNLC ${top_srcdir}; \
108 fi
109
110paxcheck:
111 @if type scanelf > /dev/null 2>&1; then \
112 ${top_srcdir}/scripts/paxcheck.sh ${top_srcdir}; \
113 fi
114
115flake8:
116 @if type flake8 > /dev/null 2>&1; then \
117 flake8 ${top_srcdir}; \
118 fi
119
120ctags:
121 $(RM) tags
122 find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
123
124etags:
125 $(RM) TAGS
126 find $(top_srcdir) -name .pc -prune -o -name '*.[hc]' | xargs etags -a
127
128tags: ctags etags
129
130pkg: @DEFAULT_PACKAGE@
131pkg-dkms: @DEFAULT_PACKAGE@-dkms
132pkg-kmod: @DEFAULT_PACKAGE@-kmod
133pkg-utils: @DEFAULT_PACKAGE@-utils