]> git.proxmox.com Git - mirror_zfs.git/blame - Makefile.am
OpenZFS 9630 - add lzc_rename and lzc_destroy to libzfs_core
[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
acf04442
PS
26@CODE_COVERAGE_RULES@
27
4cbde2ec
MA
28.PHONY: gitrev
29gitrev:
30 -${top_srcdir}/scripts/make_gitrev.sh
31
32BUILT_SOURCES = gitrev
33
c9c0d073
BB
34distclean-local::
35 -$(RM) -R autom4te*.cache
36 -find . \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
37 -o -name .pc -o -name .hg -o -name .git \) -prune -o \
38 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
39 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
c8f9061f
BB
40 -o -name '.*.rej' -o -size 0 -o -name '*%' -o -name '.*.cmd' \
41 -o -name 'core' -o -name 'Makefile' -o -name 'Module.symvers' \
d9ec8b9b
BB
42 -o -name '*.order' -o -name '*.markers' -o -name '*.gcda' \
43 -o -name '*.gcno' \) \
c9c0d073
BB
44 -type f -print | xargs $(RM)
45
a430cef9
MA
46all-local:
47 -${top_srcdir}/scripts/zfs-tests.sh -c
48
4cbde2ec
MA
49dist-hook: gitrev
50 cp ${top_srcdir}/include/zfs_gitrev.h $(distdir)/include; \
f6fb7651
BB
51 sed -i 's/Release:[[:print:]]*/Release: $(RELEASE)/' \
52 $(distdir)/META
53
93ce2b4c
BB
54# For compatibility, create a matching spl-x.y.z directly which contains
55# symlinks to the updated header and object file locations. These
56# compatibility links will be removed in the next major release.
57if CONFIG_KERNEL
58install-data-hook:
d1f06ec5 59 rm -rf $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
93ce2b4c
BB
60 mkdir $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
61 cd $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
62 ln -s ../zfs-$(VERSION)/include/spl include && \
63 ln -s ../zfs-$(VERSION)/$(LINUX_VERSION) $(LINUX_VERSION) && \
64 ln -s ../zfs-$(VERSION)/zfs_config.h.in spl_config.h.in && \
65 ln -s ../zfs-$(VERSION)/zfs.release.in spl.release.in && \
66 cd $(DESTDIR)$(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION) && \
d1f06ec5
MA
67 ln -fs zfs_config.h spl_config.h && \
68 ln -fs zfs.release spl.release
93ce2b4c
BB
69endif
70
c23f8d48
MA
71codecheck: cstyle shellcheck flake8 mancheck testscheck
72
73checkstyle: codecheck commitcheck
cb524aa2
GDN
74
75commitcheck:
76 @if git rev-parse --git-dir > /dev/null 2>&1; then \
26cb4b87 77 ${top_srcdir}/scripts/commitcheck.sh; \
cb524aa2 78 fi
c11cd7f9
TF
79
80cstyle:
351a26dd 81 @find ${top_srcdir} -name '*.[hc]' ! -name 'zfs_config.*' \
26cb4b87 82 ! -name '*.mod.c' -type f \
83 -exec ${top_srcdir}/scripts/cstyle.pl -cpP {} \+
a35beedf 84
c11cd7f9
TF
85shellcheck:
86 @if type shellcheck > /dev/null 2>&1; then \
c8f9061f 87 shellcheck --exclude=SC1090 --format=gcc \
26cb4b87 88 $$(find ${top_srcdir}/scripts/*.sh -type f) \
89 $$(find ${top_srcdir}/cmd/zed/zed.d/*.sh -type f) \
90 $$(find ${top_srcdir}/cmd/zpool/zpool.d/* -executable); \
58c0f374
MA
91 else \
92 echo "skipping shellcheck because shellcheck is not installed"; \
74698631 93 fi
c11cd7f9 94
90cdf283 95mancheck:
96 @if type mandoc > /dev/null 2>&1; then \
a94d38c0
GDN
97 find ${top_srcdir}/man/man8 -type f -name 'zfs.8' \
98 -o -name 'zpool.8' -o -name 'zdb.8' \
99 -o -name 'zgenhostid.8' | \
100 xargs mandoc -Tlint -Werror; \
58c0f374
MA
101 else \
102 echo "skipping mancheck because mandoc is not installed"; \
90cdf283 103 fi
104
9ca25e70 105testscheck:
106 @find ${top_srcdir}/tests/zfs-tests/tests -type f \
107 \( -name '*.ksh' -not -executable \) -o \
108 \( -name '*.kshlib' -executable \) -o \
109 \( -name '*.cfg' -executable \) | \
110 xargs -r stat -c '%A %n' | \
111 awk '{c++; print} END {if(c>0) exit 1}'
112
f26eb428 113lint: cppcheck paxcheck
b64e02e5
BB
114
115cppcheck:
116 @if type cppcheck > /dev/null 2>&1; then \
94183a9d 117 cppcheck --quiet --force --error-exitcode=2 --inline-suppr \
34d00e7a 118 --suppressions-list=.github/suppressions.txt \
94183a9d 119 -UHAVE_SSE2 -UHAVE_AVX512F -UHAVE_UIO_ZEROCOPY \
5fbf85c4 120 ${top_srcdir}; \
58c0f374
MA
121 else \
122 echo "skipping cppcheck because cppcheck is not installed"; \
b64e02e5
BB
123 fi
124
f26eb428
JZ
125paxcheck:
126 @if type scanelf > /dev/null 2>&1; then \
26cb4b87 127 ${top_srcdir}/scripts/paxcheck.sh ${top_srcdir}; \
58c0f374
MA
128 else \
129 echo "skipping paxcheck because scanelf is not installed"; \
f26eb428
JZ
130 fi
131
46bb91e1
GDN
132flake8:
133 @if type flake8 > /dev/null 2>&1; then \
134 flake8 ${top_srcdir}; \
58c0f374
MA
135 else \
136 echo "skipping flake8 because flake8 is not installed"; \
46bb91e1
GDN
137 fi
138
c9c0d073 139ctags:
47a4a6fd 140 $(RM) tags
c9c0d073
BB
141 find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
142
143etags:
47a4a6fd 144 $(RM) TAGS
c9c0d073
BB
145 find $(top_srcdir) -name .pc -prune -o -name '*.[hc]' | xargs etags -a
146
147tags: ctags etags
148
149pkg: @DEFAULT_PACKAGE@
7670f721 150pkg-dkms: @DEFAULT_PACKAGE@-dkms
f3757573 151pkg-kmod: @DEFAULT_PACKAGE@-kmod
c9c0d073 152pkg-utils: @DEFAULT_PACKAGE@-utils