xref: /freebsd/sys/contrib/openzfs/Makefile.am (revision 81b22a98)
1include $(top_srcdir)/config/Shellcheck.am
2
3ACLOCAL_AMFLAGS = -I config
4
5SUBDIRS = include
6if BUILD_LINUX
7SUBDIRS += rpm
8endif
9
10if CONFIG_USER
11SUBDIRS += man scripts lib tests cmd etc contrib
12if BUILD_LINUX
13SUBDIRS += udev
14endif
15endif
16if CONFIG_KERNEL
17SUBDIRS += module
18
19extradir = $(prefix)/src/zfs-$(VERSION)
20extra_HEADERS = zfs.release.in zfs_config.h.in
21
22if BUILD_LINUX
23kerneldir = $(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION)
24nodist_kernel_HEADERS = zfs.release zfs_config.h module/$(LINUX_SYMBOLS)
25endif
26endif
27
28AUTOMAKE_OPTIONS = foreign
29EXTRA_DIST  = autogen.sh copy-builtin
30EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
31EXTRA_DIST += AUTHORS CODE_OF_CONDUCT.md COPYRIGHT LICENSE META NEWS NOTICE
32EXTRA_DIST += README.md RELEASES.md
33EXTRA_DIST += module/lua/README.zfs module/os/linux/spl/README.md
34
35# Include all the extra licensing information for modules
36EXTRA_DIST += module/icp/algs/skein/THIRDPARTYLICENSE
37EXTRA_DIST += module/icp/algs/skein/THIRDPARTYLICENSE.descrip
38EXTRA_DIST += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman
39EXTRA_DIST += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.gladman.descrip
40EXTRA_DIST += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl
41EXTRA_DIST += module/icp/asm-x86_64/aes/THIRDPARTYLICENSE.openssl.descrip
42EXTRA_DIST += module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.cryptogams
43EXTRA_DIST += module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.cryptogams.descrip
44EXTRA_DIST += module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.openssl
45EXTRA_DIST += module/icp/asm-x86_64/modes/THIRDPARTYLICENSE.openssl.descrip
46EXTRA_DIST += module/os/linux/spl/THIRDPARTYLICENSE.gplv2
47EXTRA_DIST += module/os/linux/spl/THIRDPARTYLICENSE.gplv2.descrip
48EXTRA_DIST += module/zfs/THIRDPARTYLICENSE.cityhash
49EXTRA_DIST += module/zfs/THIRDPARTYLICENSE.cityhash.descrip
50
51@CODE_COVERAGE_RULES@
52
53GITREV = include/zfs_gitrev.h
54
55PHONY = gitrev
56gitrev:
57	$(AM_V_GEN)$(top_srcdir)/scripts/make_gitrev.sh $(GITREV)
58
59all: gitrev
60
61# Double-colon rules are allowed; there are multiple independent definitions.
62maintainer-clean-local::
63	-$(RM) $(GITREV)
64
65distclean-local::
66	-$(RM) -R autom4te*.cache build
67	-find . \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
68		-o -name .pc -o -name .hg -o -name .git \) -prune -o \
69		\( -name '*.orig' -o -name '*.rej' -o -name '*~' \
70		-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
71		-o -name '.*.rej' -o -size 0 -o -name '*%' -o -name '.*.cmd' \
72		-o -name 'core' -o -name 'Makefile' -o -name 'Module.symvers' \
73		-o -name '*.order' -o -name '*.markers' -o -name '*.gcda' \
74		-o -name '*.gcno' \) \
75		-type f -print | xargs $(RM)
76
77all-local:
78	-[ -x ${top_builddir}/scripts/zfs-tests.sh ] && \
79	    ${top_builddir}/scripts/zfs-tests.sh -c
80
81dist-hook:
82	$(AM_V_GEN)$(top_srcdir)/scripts/make_gitrev.sh -D $(distdir) $(GITREV)
83	$(SED) ${ac_inplace} -e 's/Release:[[:print:]]*/Release:      $(RELEASE)/' \
84		$(distdir)/META
85
86if BUILD_LINUX
87# For compatibility, create a matching spl-x.y.z directly which contains
88# symlinks to the updated header and object file locations.  These
89# compatibility links will be removed in the next major release.
90if CONFIG_KERNEL
91install-data-hook:
92	rm -rf $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
93	mkdir $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
94	cd $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
95	ln -s ../zfs-$(VERSION)/include/spl include && \
96	ln -s ../zfs-$(VERSION)/$(LINUX_VERSION) $(LINUX_VERSION) && \
97	ln -s ../zfs-$(VERSION)/zfs_config.h.in spl_config.h.in && \
98	ln -s ../zfs-$(VERSION)/zfs.release.in spl.release.in && \
99	cd $(DESTDIR)$(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION) && \
100	ln -fs zfs_config.h spl_config.h && \
101	ln -fs zfs.release spl.release
102endif
103endif
104
105PHONY += codecheck
106codecheck: cstyle shellcheck checkbashisms flake8 mancheck testscheck vcscheck
107
108PHONY += checkstyle
109checkstyle: codecheck commitcheck
110
111PHONY += commitcheck
112commitcheck:
113	@if git rev-parse --git-dir > /dev/null 2>&1; then \
114		${top_srcdir}/scripts/commitcheck.sh; \
115	fi
116
117PHONY += cstyle
118cstyle:
119	@find ${top_srcdir} -name build -prune \
120		-o -type f -name '*.[hc]' \
121		! -name 'zfs_config.*' ! -name '*.mod.c' \
122		! -name 'opt_global.h' ! -name '*_if*.h' \
123		! -path './module/zstd/lib/*' \
124		-exec ${top_srcdir}/scripts/cstyle.pl -cpP {} \+
125
126filter_executable = -exec test -x '{}' \; -print
127
128SHELLCHECKDIRS = cmd contrib etc scripts tests
129SHELLCHECKSCRIPTS = autogen.sh
130
131PHONY += checkabi storeabi
132
133checklibabiversion:
134	libabiversion=`abidw -v | $(SED) 's/[^0-9]//g'`; \
135	if test $$libabiversion -lt "200"; then \
136        /bin/echo -e "\n" \
137        "*** Please use libabigail 2.0.0 version or newer;\n" \
138        "*** otherwise results are not consistent!\n" \
139        "(or see https://github.com/openzfs/libabigail-docker )\n"; \
140        exit 1; \
141    fi;
142
143checkabi: checklibabiversion lib
144	$(MAKE) -C lib checkabi
145
146storeabi: checklibabiversion lib
147	$(MAKE) -C lib storeabi
148
149PHONY += mancheck
150mancheck:
151	${top_srcdir}/scripts/mancheck.sh ${top_srcdir}/man ${top_srcdir}/tests/test-runner/man
152
153if BUILD_LINUX
154stat_fmt = -c '%A %n'
155else
156stat_fmt = -f '%Sp %N'
157endif
158
159PHONY += testscheck
160testscheck:
161	@find ${top_srcdir}/tests/zfs-tests -type f \
162		\( -name '*.ksh' -not ${filter_executable} \) -o \
163		\( -name '*.kshlib' ${filter_executable} \) -o \
164		\( -name '*.shlib' ${filter_executable} \) -o \
165		\( -name '*.cfg' ${filter_executable} \) | \
166		xargs -r stat ${stat_fmt} | \
167		awk '{c++; print} END {if(c>0) exit 1}'
168
169PHONY += vcscheck
170vcscheck:
171	@if git rev-parse --git-dir > /dev/null 2>&1; then \
172		git ls-files . --exclude-standard --others | \
173		awk '{c++; print} END {if(c>0) exit 1}' ; \
174	fi
175
176PHONY += lint
177lint: cppcheck paxcheck
178
179CPPCHECKDIRS = cmd lib module
180PHONY += cppcheck
181cppcheck: $(CPPCHECKDIRS)
182	@if test -n "$(CPPCHECK)"; then \
183		set -e ; for dir in $(CPPCHECKDIRS) ; do \
184			$(MAKE) -C $$dir cppcheck ; \
185		done \
186	else \
187		echo "skipping cppcheck because cppcheck is not installed"; \
188	fi
189
190PHONY += paxcheck
191paxcheck:
192	@if type scanelf > /dev/null 2>&1; then \
193		${top_srcdir}/scripts/paxcheck.sh ${top_builddir}; \
194	else \
195		echo "skipping paxcheck because scanelf is not installed"; \
196	fi
197
198PHONY += flake8
199flake8:
200	@if type flake8 > /dev/null 2>&1; then \
201		flake8 ${top_srcdir}; \
202	else \
203		echo "skipping flake8 because flake8 is not installed"; \
204	fi
205
206PHONY += ctags
207ctags:
208	$(RM) tags
209	find $(top_srcdir) -name '.?*' -prune \
210		-o -type f -name '*.[hcS]' -print | xargs ctags -a
211
212PHONY += etags
213etags:
214	$(RM) TAGS
215	find $(top_srcdir) -name '.?*' -prune \
216		-o -type f -name '*.[hcS]' -print | xargs etags -a
217
218PHONY += cscopelist
219cscopelist:
220	find $(top_srcdir) -name '.?*' -prune \
221		-o -type f -name '*.[hc]' -print >cscope.files
222
223PHONY += tags
224tags: ctags etags
225
226PHONY += pkg pkg-dkms pkg-kmod pkg-utils
227pkg: @DEFAULT_PACKAGE@
228pkg-dkms: @DEFAULT_PACKAGE@-dkms
229pkg-kmod: @DEFAULT_PACKAGE@-kmod
230pkg-utils: @DEFAULT_PACKAGE@-utils
231
232include config/rpm.am
233include config/deb.am
234include config/tgz.am
235
236.PHONY: $(PHONY)
237