2013-03-30 06:33:09 +04:00
|
|
|
ACLOCAL_AMFLAGS = -I config
|
|
|
|
|
2014-06-10 01:55:31 +04:00
|
|
|
include config/rpm.am
|
|
|
|
include config/deb.am
|
|
|
|
include config/tgz.am
|
2010-08-26 22:22:58 +04:00
|
|
|
|
2013-02-18 00:10:17 +04:00
|
|
|
SUBDIRS = include rpm
|
2010-08-26 22:22:58 +04:00
|
|
|
if CONFIG_USER
|
2016-06-16 01:47:05 +03:00
|
|
|
SUBDIRS += udev etc man scripts lib tests cmd contrib
|
2010-08-26 22:22:58 +04:00
|
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
2012-12-16 09:35:16 +04:00
|
|
|
SUBDIRS += module
|
2013-02-22 03:10:11 +04:00
|
|
|
|
2018-02-16 04:53:18 +03:00
|
|
|
extradir = $(prefix)/src/zfs-$(VERSION)
|
2013-02-22 03:10:11 +04:00
|
|
|
extra_HEADERS = zfs.release.in zfs_config.h.in
|
|
|
|
|
2018-02-16 04:53:18 +03:00
|
|
|
kerneldir = $(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION)
|
2013-02-22 03:10:11 +04:00
|
|
|
nodist_kernel_HEADERS = zfs.release zfs_config.h module/$(LINUX_SYMBOLS)
|
2010-08-26 22:22:58 +04:00
|
|
|
endif
|
|
|
|
|
2010-09-03 00:18:17 +04:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
2013-02-18 00:10:17 +04:00
|
|
|
EXTRA_DIST = autogen.sh copy-builtin
|
2010-08-26 22:22:58 +04:00
|
|
|
EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
|
2018-09-18 22:03:47 +03:00
|
|
|
EXTRA_DIST += META AUTHORS COPYRIGHT LICENSE NEWS NOTICE README.md
|
2010-08-26 22:22:58 +04:00
|
|
|
|
2017-09-23 04:49:57 +03:00
|
|
|
@CODE_COVERAGE_RULES@
|
|
|
|
|
2018-10-09 07:57:02 +03:00
|
|
|
.PHONY: gitrev
|
|
|
|
gitrev:
|
|
|
|
-${top_srcdir}/scripts/make_gitrev.sh
|
|
|
|
|
|
|
|
BUILT_SOURCES = gitrev
|
|
|
|
|
2010-08-26 22:22:58 +04:00
|
|
|
distclean-local::
|
|
|
|
-$(RM) -R autom4te*.cache
|
|
|
|
-find . \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
|
|
|
|
-o -name .pc -o -name .hg -o -name .git \) -prune -o \
|
|
|
|
\( -name '*.orig' -o -name '*.rej' -o -name '*~' \
|
|
|
|
-o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
|
Retire legacy test infrastructure
* Removed zpios kmod, utility, headers and man page.
* Removed unused scripts zpios-profile/*, zpios-test/*,
zpool-config/*, smb.sh, zpios-sanity.sh, zpios-survey.sh,
zpios.sh, and zpool-create.sh.
* Removed zfs-script-config.sh.in. When building 'make' generates
a common.sh with in-tree path information from the common.sh.in
template. This file and sourced by the test scripts and used
for in-tree testing, it is not included in the packages. When
building packages 'make install' uses the same template to
create a new common.sh which is appropriate for the packaging.
* Removed unused functions/variables from scripts/common.sh.in.
Only minimal path information and configuration environment
variables remain.
* Removed unused scripts from scripts/ directory.
* Remaining shell scripts in the scripts directory updated to
cleanly pass shellcheck and added to checked scripts.
* Renamed tests/test-runner/cmd/ to tests/test-runner/bin/ to
match install location name.
* Removed last traces of the --enable-debug-dmu-tx configure
options which was retired some time ago.
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6509
2017-08-16 03:26:38 +03:00
|
|
|
-o -name '.*.rej' -o -size 0 -o -name '*%' -o -name '.*.cmd' \
|
|
|
|
-o -name 'core' -o -name 'Makefile' -o -name 'Module.symvers' \
|
2017-09-15 20:24:13 +03:00
|
|
|
-o -name '*.order' -o -name '*.markers' -o -name '*.gcda' \
|
|
|
|
-o -name '*.gcno' \) \
|
2010-08-26 22:22:58 +04:00
|
|
|
-type f -print | xargs $(RM)
|
|
|
|
|
2018-05-21 20:36:59 +03:00
|
|
|
all-local:
|
|
|
|
-${top_srcdir}/scripts/zfs-tests.sh -c
|
|
|
|
|
2018-10-09 07:57:02 +03:00
|
|
|
dist-hook: gitrev
|
|
|
|
cp ${top_srcdir}/include/zfs_gitrev.h $(distdir)/include; \
|
2013-03-23 01:46:11 +04:00
|
|
|
sed -i 's/Release:[[:print:]]*/Release: $(RELEASE)/' \
|
|
|
|
$(distdir)/META
|
|
|
|
|
2018-02-16 04:53:18 +03:00
|
|
|
# For compatibility, create a matching spl-x.y.z directly which contains
|
|
|
|
# symlinks to the updated header and object file locations. These
|
|
|
|
# compatibility links will be removed in the next major release.
|
|
|
|
if CONFIG_KERNEL
|
|
|
|
install-data-hook:
|
2018-05-31 19:19:59 +03:00
|
|
|
rm -rf $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
|
2018-02-16 04:53:18 +03:00
|
|
|
mkdir $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
|
|
|
|
cd $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
|
|
|
|
ln -s ../zfs-$(VERSION)/include/spl include && \
|
|
|
|
ln -s ../zfs-$(VERSION)/$(LINUX_VERSION) $(LINUX_VERSION) && \
|
|
|
|
ln -s ../zfs-$(VERSION)/zfs_config.h.in spl_config.h.in && \
|
|
|
|
ln -s ../zfs-$(VERSION)/zfs.release.in spl.release.in && \
|
|
|
|
cd $(DESTDIR)$(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION) && \
|
2018-05-31 19:19:59 +03:00
|
|
|
ln -fs zfs_config.h spl_config.h && \
|
|
|
|
ln -fs zfs.release spl.release
|
2018-02-16 04:53:18 +03:00
|
|
|
endif
|
|
|
|
|
2018-10-04 23:10:10 +03:00
|
|
|
codecheck: cstyle shellcheck flake8 mancheck testscheck
|
|
|
|
|
|
|
|
checkstyle: codecheck commitcheck
|
2017-03-31 19:33:38 +03:00
|
|
|
|
|
|
|
commitcheck:
|
|
|
|
@if git rev-parse --git-dir > /dev/null 2>&1; then \
|
2018-02-21 23:35:59 +03:00
|
|
|
${top_srcdir}/scripts/commitcheck.sh; \
|
2017-03-31 19:33:38 +03:00
|
|
|
fi
|
2015-05-18 21:49:24 +03:00
|
|
|
|
|
|
|
cstyle:
|
2013-12-18 04:11:57 +04:00
|
|
|
@find ${top_srcdir} -name '*.[hc]' ! -name 'zfs_config.*' \
|
2018-02-21 23:35:59 +03:00
|
|
|
! -name '*.mod.c' -type f \
|
|
|
|
-exec ${top_srcdir}/scripts/cstyle.pl -cpP {} \+
|
2013-10-30 22:19:53 +04:00
|
|
|
|
2015-05-18 21:49:24 +03:00
|
|
|
shellcheck:
|
|
|
|
@if type shellcheck > /dev/null 2>&1; then \
|
Retire legacy test infrastructure
* Removed zpios kmod, utility, headers and man page.
* Removed unused scripts zpios-profile/*, zpios-test/*,
zpool-config/*, smb.sh, zpios-sanity.sh, zpios-survey.sh,
zpios.sh, and zpool-create.sh.
* Removed zfs-script-config.sh.in. When building 'make' generates
a common.sh with in-tree path information from the common.sh.in
template. This file and sourced by the test scripts and used
for in-tree testing, it is not included in the packages. When
building packages 'make install' uses the same template to
create a new common.sh which is appropriate for the packaging.
* Removed unused functions/variables from scripts/common.sh.in.
Only minimal path information and configuration environment
variables remain.
* Removed unused scripts from scripts/ directory.
* Remaining shell scripts in the scripts directory updated to
cleanly pass shellcheck and added to checked scripts.
* Renamed tests/test-runner/cmd/ to tests/test-runner/bin/ to
match install location name.
* Removed last traces of the --enable-debug-dmu-tx configure
options which was retired some time ago.
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #6509
2017-08-16 03:26:38 +03:00
|
|
|
shellcheck --exclude=SC1090 --format=gcc \
|
2018-02-21 23:35:59 +03:00
|
|
|
$$(find ${top_srcdir}/scripts/*.sh -type f) \
|
|
|
|
$$(find ${top_srcdir}/cmd/zed/zed.d/*.sh -type f) \
|
|
|
|
$$(find ${top_srcdir}/cmd/zpool/zpool.d/* -executable); \
|
2018-10-04 23:11:45 +03:00
|
|
|
else \
|
|
|
|
echo "skipping shellcheck because shellcheck is not installed"; \
|
2017-04-07 03:16:41 +03:00
|
|
|
fi
|
2015-05-18 21:49:24 +03:00
|
|
|
|
2017-09-16 20:51:24 +03:00
|
|
|
mancheck:
|
|
|
|
@if type mandoc > /dev/null 2>&1; then \
|
2017-10-27 19:52:18 +03:00
|
|
|
find ${top_srcdir}/man/man8 -type f -name 'zfs.8' \
|
|
|
|
-o -name 'zpool.8' -o -name 'zdb.8' \
|
|
|
|
-o -name 'zgenhostid.8' | \
|
|
|
|
xargs mandoc -Tlint -Werror; \
|
2018-10-04 23:11:45 +03:00
|
|
|
else \
|
|
|
|
echo "skipping mancheck because mandoc is not installed"; \
|
2017-09-16 20:51:24 +03:00
|
|
|
fi
|
|
|
|
|
2018-02-07 23:43:24 +03:00
|
|
|
testscheck:
|
|
|
|
@find ${top_srcdir}/tests/zfs-tests/tests -type f \
|
|
|
|
\( -name '*.ksh' -not -executable \) -o \
|
|
|
|
\( -name '*.kshlib' -executable \) -o \
|
|
|
|
\( -name '*.cfg' -executable \) | \
|
|
|
|
xargs -r stat -c '%A %n' | \
|
|
|
|
awk '{c++; print} END {if(c>0) exit 1}'
|
|
|
|
|
2016-10-29 02:10:00 +03:00
|
|
|
lint: cppcheck paxcheck
|
2016-08-01 21:00:47 +03:00
|
|
|
|
|
|
|
cppcheck:
|
|
|
|
@if type cppcheck > /dev/null 2>&1; then \
|
2017-11-19 01:08:00 +03:00
|
|
|
cppcheck --quiet --force --error-exitcode=2 --inline-suppr \
|
2017-09-19 22:17:29 +03:00
|
|
|
--suppressions-list=.github/suppressions.txt \
|
2017-11-19 01:08:00 +03:00
|
|
|
-UHAVE_SSE2 -UHAVE_AVX512F -UHAVE_UIO_ZEROCOPY \
|
|
|
|
-UHAVE_DNLC ${top_srcdir}; \
|
2018-10-04 23:11:45 +03:00
|
|
|
else \
|
|
|
|
echo "skipping cppcheck because cppcheck is not installed"; \
|
2016-08-01 21:00:47 +03:00
|
|
|
fi
|
|
|
|
|
2016-10-29 02:10:00 +03:00
|
|
|
paxcheck:
|
|
|
|
@if type scanelf > /dev/null 2>&1; then \
|
2018-02-21 23:35:59 +03:00
|
|
|
${top_srcdir}/scripts/paxcheck.sh ${top_srcdir}; \
|
2018-10-04 23:11:45 +03:00
|
|
|
else \
|
|
|
|
echo "skipping paxcheck because scanelf is not installed"; \
|
2016-10-29 02:10:00 +03:00
|
|
|
fi
|
|
|
|
|
2016-10-06 20:50:15 +03:00
|
|
|
flake8:
|
|
|
|
@if type flake8 > /dev/null 2>&1; then \
|
|
|
|
flake8 ${top_srcdir}; \
|
2018-10-04 23:11:45 +03:00
|
|
|
else \
|
|
|
|
echo "skipping flake8 because flake8 is not installed"; \
|
2016-10-06 20:50:15 +03:00
|
|
|
fi
|
|
|
|
|
2010-08-26 22:22:58 +04:00
|
|
|
ctags:
|
2014-06-10 01:55:31 +04:00
|
|
|
$(RM) tags
|
2010-08-26 22:22:58 +04:00
|
|
|
find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
|
|
|
|
|
|
|
|
etags:
|
2014-06-10 01:55:31 +04:00
|
|
|
$(RM) TAGS
|
2010-08-26 22:22:58 +04:00
|
|
|
find $(top_srcdir) -name .pc -prune -o -name '*.[hc]' | xargs etags -a
|
|
|
|
|
|
|
|
tags: ctags etags
|
|
|
|
|
|
|
|
pkg: @DEFAULT_PACKAGE@
|
2017-10-15 23:00:44 +03:00
|
|
|
pkg-dkms: @DEFAULT_PACKAGE@-dkms
|
2013-02-18 00:10:17 +04:00
|
|
|
pkg-kmod: @DEFAULT_PACKAGE@-kmod
|
2010-08-26 22:22:58 +04:00
|
|
|
pkg-utils: @DEFAULT_PACKAGE@-utils
|