2013-03-30 02:33:09 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I config
|
|
|
|
|
2014-06-09 21:55:31 +00:00
|
|
|
include config/rpm.am
|
|
|
|
include config/deb.am
|
|
|
|
include config/tgz.am
|
2010-08-26 18:22:58 +00:00
|
|
|
|
2013-02-17 20:10:17 +00:00
|
|
|
SUBDIRS = include rpm
|
2010-08-26 18:22:58 +00:00
|
|
|
if CONFIG_USER
|
2016-06-15 22:47:05 +00:00
|
|
|
SUBDIRS += udev etc man scripts lib tests cmd contrib
|
2010-08-26 18:22:58 +00:00
|
|
|
endif
|
|
|
|
if CONFIG_KERNEL
|
2012-12-16 05:35:16 +00:00
|
|
|
SUBDIRS += module
|
2013-02-21 23:10:11 +00:00
|
|
|
|
2014-08-29 15:53:09 +00:00
|
|
|
extradir = @prefix@/src/zfs-$(VERSION)
|
2013-02-21 23:10:11 +00:00
|
|
|
extra_HEADERS = zfs.release.in zfs_config.h.in
|
|
|
|
|
2014-08-29 15:53:09 +00:00
|
|
|
kerneldir = @prefix@/src/zfs-$(VERSION)/$(LINUX_VERSION)
|
2013-02-21 23:10:11 +00:00
|
|
|
nodist_kernel_HEADERS = zfs.release zfs_config.h module/$(LINUX_SYMBOLS)
|
2010-08-26 18:22:58 +00:00
|
|
|
endif
|
|
|
|
|
2010-09-02 20:18:17 +00:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
2013-02-17 20:10:17 +00:00
|
|
|
EXTRA_DIST = autogen.sh copy-builtin
|
2010-08-26 18:22:58 +00:00
|
|
|
EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
|
2013-02-17 19:16:22 +00:00
|
|
|
EXTRA_DIST += META DISCLAIMER COPYRIGHT README.markdown OPENSOLARIS.LICENSE
|
2010-08-26 18:22:58 +00:00
|
|
|
|
2017-09-23 01:49:57 +00:00
|
|
|
@CODE_COVERAGE_RULES@
|
|
|
|
|
2010-08-26 18:22:58 +00: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 00:26:38 +00: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 17:24:13 +00:00
|
|
|
-o -name '*.order' -o -name '*.markers' -o -name '*.gcda' \
|
|
|
|
-o -name '*.gcno' \) \
|
2010-08-26 18:22:58 +00:00
|
|
|
-type f -print | xargs $(RM)
|
|
|
|
|
2013-03-22 21:46:11 +00:00
|
|
|
dist-hook:
|
|
|
|
sed -i 's/Release:[[:print:]]*/Release: $(RELEASE)/' \
|
|
|
|
$(distdir)/META
|
|
|
|
|
2017-09-16 17:51:24 +00:00
|
|
|
checkstyle: cstyle shellcheck flake8 commitcheck mancheck
|
2017-03-31 16:33:38 +00:00
|
|
|
|
|
|
|
commitcheck:
|
|
|
|
@if git rev-parse --git-dir > /dev/null 2>&1; then \
|
|
|
|
scripts/commitcheck.sh; \
|
|
|
|
fi
|
2015-05-18 18:49:24 +00:00
|
|
|
|
|
|
|
cstyle:
|
2013-12-18 00:11:57 +00:00
|
|
|
@find ${top_srcdir} -name '*.[hc]' ! -name 'zfs_config.*' \
|
2016-12-12 18:46:26 +00:00
|
|
|
! -name '*.mod.c' -type f -exec scripts/cstyle.pl -cpP {} \+
|
2013-10-30 18:19:53 +00:00
|
|
|
|
2015-05-18 18:49:24 +00: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 00:26:38 +00:00
|
|
|
shellcheck --exclude=SC1090 --format=gcc \
|
|
|
|
$$(find scripts/*.sh -type f) \
|
2017-04-21 16:27:04 +00:00
|
|
|
$$(find cmd/zed/zed.d/*.sh -type f) \
|
|
|
|
$$(find cmd/zpool/zpool.d/* -executable); \
|
2017-04-07 00:16:41 +00:00
|
|
|
fi
|
2015-05-18 18:49:24 +00:00
|
|
|
|
2017-09-16 17:51:24 +00:00
|
|
|
mancheck:
|
|
|
|
@if type mandoc > /dev/null 2>&1; then \
|
2017-10-27 16:52:18 +00: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; \
|
2017-09-16 17:51:24 +00:00
|
|
|
fi
|
|
|
|
|
2016-10-28 23:10:00 +00:00
|
|
|
lint: cppcheck paxcheck
|
2016-08-01 18:00:47 +00:00
|
|
|
|
|
|
|
cppcheck:
|
|
|
|
@if type cppcheck > /dev/null 2>&1; then \
|
2017-11-18 22:08:00 +00:00
|
|
|
cppcheck --quiet --force --error-exitcode=2 --inline-suppr \
|
2017-09-19 19:17:29 +00:00
|
|
|
--suppressions-list=.github/suppressions.txt \
|
2017-11-18 22:08:00 +00:00
|
|
|
-UHAVE_SSE2 -UHAVE_AVX512F -UHAVE_UIO_ZEROCOPY \
|
|
|
|
-UHAVE_DNLC ${top_srcdir}; \
|
2016-08-01 18:00:47 +00:00
|
|
|
fi
|
|
|
|
|
2016-10-28 23:10:00 +00:00
|
|
|
paxcheck:
|
|
|
|
@if type scanelf > /dev/null 2>&1; then \
|
|
|
|
scripts/paxcheck.sh ${top_srcdir}; \
|
|
|
|
fi
|
|
|
|
|
2016-10-06 17:50:15 +00:00
|
|
|
flake8:
|
|
|
|
@if type flake8 > /dev/null 2>&1; then \
|
|
|
|
flake8 ${top_srcdir}; \
|
|
|
|
fi
|
|
|
|
|
2010-08-26 18:22:58 +00:00
|
|
|
ctags:
|
2014-06-09 21:55:31 +00:00
|
|
|
$(RM) tags
|
2010-08-26 18:22:58 +00:00
|
|
|
find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
|
|
|
|
|
|
|
|
etags:
|
2014-06-09 21:55:31 +00:00
|
|
|
$(RM) TAGS
|
2010-08-26 18:22:58 +00:00
|
|
|
find $(top_srcdir) -name .pc -prune -o -name '*.[hc]' | xargs etags -a
|
|
|
|
|
|
|
|
tags: ctags etags
|
|
|
|
|
|
|
|
pkg: @DEFAULT_PACKAGE@
|
2017-10-15 20:00:44 +00:00
|
|
|
pkg-dkms: @DEFAULT_PACKAGE@-dkms
|
2013-02-17 20:10:17 +00:00
|
|
|
pkg-kmod: @DEFAULT_PACKAGE@-kmod
|
2010-08-26 18:22:58 +00:00
|
|
|
pkg-utils: @DEFAULT_PACKAGE@-utils
|