]> git.proxmox.com Git - mirror_zfs.git/blame - Makefile.am
ztest: scrub ddt repair
[mirror_zfs.git] / Makefile.am
CommitLineData
8c392629
JE
1ACLOCAL_AMFLAGS = -I config
2
47a4a6fd
TF
3include config/rpm.am
4include config/deb.am
5include config/tgz.am
c9c0d073 6
f3757573 7SUBDIRS = include rpm
c9c0d073 8if CONFIG_USER
3c67d83a 9SUBDIRS += udev etc man scripts lib tests cmd contrib
c9c0d073
BB
10endif
11if CONFIG_KERNEL
fd7fd5eb 12SUBDIRS += module
775f2d34 13
93ce2b4c 14extradir = $(prefix)/src/zfs-$(VERSION)
775f2d34
BB
15extra_HEADERS = zfs.release.in zfs_config.h.in
16
93ce2b4c 17kerneldir = $(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION)
775f2d34 18nodist_kernel_HEADERS = zfs.release zfs_config.h module/$(LINUX_SYMBOLS)
c9c0d073 19endif
c9c0d073 20
8160dd9a 21AUTOMAKE_OPTIONS = foreign
f3757573 22EXTRA_DIST = autogen.sh copy-builtin
c9c0d073 23EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
145c88fb 24EXTRA_DIST += META AUTHORS COPYRIGHT LICENSE NEWS NOTICE README.md
c9c0d073 25
53b5fcd3
NG
26# Include all the extra licensing information for modules
27EXTRA_DIST += module/icp/algs/skein/THIRDPARTYLICENSE module/icp/algs/skein/THIRDPARTYLICENSE.descrip
28EXTRA_DIST += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman.descrip
29EXTRA_DIST += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl.descrip
30EXTRA_DIST += module/spl/THIRDPARTYLICENSE.gplv2 module/spl/THIRDPARTYLICENSE.gplv2.descrip
31EXTRA_DIST += module/zfs/THIRDPARTYLICENSE.cityhash module/zfs/THIRDPARTYLICENSE.cityhash.descrip
32
acf04442
PS
33@CODE_COVERAGE_RULES@
34
4cbde2ec
MA
35.PHONY: gitrev
36gitrev:
37 -${top_srcdir}/scripts/make_gitrev.sh
38
39BUILT_SOURCES = gitrev
40
c9c0d073
BB
41distclean-local::
42 -$(RM) -R autom4te*.cache
43 -find . \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
44 -o -name .pc -o -name .hg -o -name .git \) -prune -o \
45 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
46 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
c8f9061f
BB
47 -o -name '.*.rej' -o -size 0 -o -name '*%' -o -name '.*.cmd' \
48 -o -name 'core' -o -name 'Makefile' -o -name 'Module.symvers' \
d9ec8b9b
BB
49 -o -name '*.order' -o -name '*.markers' -o -name '*.gcda' \
50 -o -name '*.gcno' \) \
c9c0d073
BB
51 -type f -print | xargs $(RM)
52
a430cef9
MA
53all-local:
54 -${top_srcdir}/scripts/zfs-tests.sh -c
55
4cbde2ec
MA
56dist-hook: gitrev
57 cp ${top_srcdir}/include/zfs_gitrev.h $(distdir)/include; \
f6fb7651
BB
58 sed -i 's/Release:[[:print:]]*/Release: $(RELEASE)/' \
59 $(distdir)/META
60
93ce2b4c
BB
61# For compatibility, create a matching spl-x.y.z directly which contains
62# symlinks to the updated header and object file locations. These
63# compatibility links will be removed in the next major release.
64if CONFIG_KERNEL
65install-data-hook:
d1f06ec5 66 rm -rf $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
93ce2b4c
BB
67 mkdir $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
68 cd $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
69 ln -s ../zfs-$(VERSION)/include/spl include && \
70 ln -s ../zfs-$(VERSION)/$(LINUX_VERSION) $(LINUX_VERSION) && \
71 ln -s ../zfs-$(VERSION)/zfs_config.h.in spl_config.h.in && \
72 ln -s ../zfs-$(VERSION)/zfs.release.in spl.release.in && \
73 cd $(DESTDIR)$(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION) && \
d1f06ec5
MA
74 ln -fs zfs_config.h spl_config.h && \
75 ln -fs zfs.release spl.release
93ce2b4c
BB
76endif
77
7b02fae7 78codecheck: cstyle shellcheck flake8 mancheck testscheck vcscheck
c23f8d48
MA
79
80checkstyle: codecheck commitcheck
cb524aa2
GDN
81
82commitcheck:
83 @if git rev-parse --git-dir > /dev/null 2>&1; then \
26cb4b87 84 ${top_srcdir}/scripts/commitcheck.sh; \
cb524aa2 85 fi
c11cd7f9
TF
86
87cstyle:
351a26dd 88 @find ${top_srcdir} -name '*.[hc]' ! -name 'zfs_config.*' \
26cb4b87 89 ! -name '*.mod.c' -type f \
90 -exec ${top_srcdir}/scripts/cstyle.pl -cpP {} \+
a35beedf 91
c11cd7f9
TF
92shellcheck:
93 @if type shellcheck > /dev/null 2>&1; then \
c8f9061f 94 shellcheck --exclude=SC1090 --format=gcc \
26cb4b87 95 $$(find ${top_srcdir}/scripts/*.sh -type f) \
96 $$(find ${top_srcdir}/cmd/zed/zed.d/*.sh -type f) \
97 $$(find ${top_srcdir}/cmd/zpool/zpool.d/* -executable); \
58c0f374
MA
98 else \
99 echo "skipping shellcheck because shellcheck is not installed"; \
74698631 100 fi
c11cd7f9 101
90cdf283 102mancheck:
103 @if type mandoc > /dev/null 2>&1; then \
a94d38c0
GDN
104 find ${top_srcdir}/man/man8 -type f -name 'zfs.8' \
105 -o -name 'zpool.8' -o -name 'zdb.8' \
106 -o -name 'zgenhostid.8' | \
107 xargs mandoc -Tlint -Werror; \
58c0f374
MA
108 else \
109 echo "skipping mancheck because mandoc is not installed"; \
90cdf283 110 fi
111
9ca25e70 112testscheck:
113 @find ${top_srcdir}/tests/zfs-tests/tests -type f \
114 \( -name '*.ksh' -not -executable \) -o \
115 \( -name '*.kshlib' -executable \) -o \
116 \( -name '*.cfg' -executable \) | \
117 xargs -r stat -c '%A %n' | \
118 awk '{c++; print} END {if(c>0) exit 1}'
119
7b02fae7 120vcscheck:
121 @if git rev-parse --git-dir > /dev/null 2>&1; then \
122 git ls-files . --exclude-standard --others | \
123 awk '{c++; print} END {if(c>0) exit 1}' ; \
124 fi
125
f26eb428 126lint: cppcheck paxcheck
b64e02e5
BB
127
128cppcheck:
129 @if type cppcheck > /dev/null 2>&1; then \
94183a9d 130 cppcheck --quiet --force --error-exitcode=2 --inline-suppr \
34d00e7a 131 --suppressions-list=.github/suppressions.txt \
94183a9d 132 -UHAVE_SSE2 -UHAVE_AVX512F -UHAVE_UIO_ZEROCOPY \
5fbf85c4 133 ${top_srcdir}; \
58c0f374
MA
134 else \
135 echo "skipping cppcheck because cppcheck is not installed"; \
b64e02e5
BB
136 fi
137
f26eb428
JZ
138paxcheck:
139 @if type scanelf > /dev/null 2>&1; then \
26cb4b87 140 ${top_srcdir}/scripts/paxcheck.sh ${top_srcdir}; \
58c0f374
MA
141 else \
142 echo "skipping paxcheck because scanelf is not installed"; \
f26eb428
JZ
143 fi
144
46bb91e1
GDN
145flake8:
146 @if type flake8 > /dev/null 2>&1; then \
147 flake8 ${top_srcdir}; \
58c0f374
MA
148 else \
149 echo "skipping flake8 because flake8 is not installed"; \
46bb91e1
GDN
150 fi
151
c9c0d073 152ctags:
47a4a6fd 153 $(RM) tags
c9c0d073
BB
154 find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
155
156etags:
47a4a6fd 157 $(RM) TAGS
c9c0d073
BB
158 find $(top_srcdir) -name .pc -prune -o -name '*.[hc]' | xargs etags -a
159
160tags: ctags etags
161
162pkg: @DEFAULT_PACKAGE@
7670f721 163pkg-dkms: @DEFAULT_PACKAGE@-dkms
f3757573 164pkg-kmod: @DEFAULT_PACKAGE@-kmod
c9c0d073 165pkg-utils: @DEFAULT_PACKAGE@-utils