]> granicus.if.org Git - zfs/blobdiff - Makefile.am
Default ashift for Amazon EC2 NVMe devices
[zfs] / Makefile.am
index 3adc161adc8a5edbd8a28edae4536e1331a7ec5e..b539ff30f7a19158bc5cf41aa97bab5f3187b898 100644 (file)
@@ -23,23 +23,30 @@ EXTRA_DIST  = autogen.sh copy-builtin
 EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
 EXTRA_DIST += META DISCLAIMER COPYRIGHT README.markdown OPENSOLARIS.LICENSE
 
+@CODE_COVERAGE_RULES@
+
 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' \
-               -o -name '.*.rej' -o -name '.script-config' -o -size 0 \
-               -o -name '*%' -o -name '.*.cmd' -o -name 'core' \
-               -o -name 'Makefile' -o -name 'Module.symvers' \
-               -o -name '*.order' -o -name '*.markers' \) \
+               -o -name '.*.rej' -o -size 0 -o -name '*%' -o -name '.*.cmd' \
+               -o -name 'core' -o -name 'Makefile' -o -name 'Module.symvers' \
+               -o -name '*.order' -o -name '*.markers' -o -name '*.gcda' \
+               -o -name '*.gcno' \) \
                -type f -print | xargs $(RM)
 
 dist-hook:
        sed -i 's/Release:[[:print:]]*/Release:      $(RELEASE)/' \
                $(distdir)/META
 
-checkstyle: cstyle shellcheck flake8
+checkstyle: cstyle shellcheck flake8 commitcheck
+
+commitcheck:
+       @if git rev-parse --git-dir > /dev/null 2>&1; then \
+               scripts/commitcheck.sh; \
+       fi
 
 cstyle:
        @find ${top_srcdir} -name '*.[hc]' ! -name 'zfs_config.*' \
@@ -47,23 +54,23 @@ cstyle:
 
 shellcheck:
        @if type shellcheck > /dev/null 2>&1; then \
-               shellcheck --exclude=SC1090 --format gcc scripts/paxcheck.sh \
+               shellcheck --exclude=SC1090 --format=gcc scripts/paxcheck.sh \
                        scripts/zloop.sh \
                        scripts/zfs-tests.sh \
-                       scripts/zfs.sh; \
-               (find cmd/zed/zed.d/*.sh -type f) | \
-                grep -v 'zfs-script-config' | \
-                while read file; do \
-                       shellcheck --exclude=SC1090 --format gcc "$$file"; \
-                done; \
-        fi
+                       scripts/zfs.sh \
+                       scripts/commitcheck.sh \
+                       $$(find cmd/zed/zed.d/*.sh -type f) \
+                       $$(find cmd/zpool/zpool.d/* -executable); \
+       fi
 
 lint: cppcheck paxcheck
 
 cppcheck:
        @if type cppcheck > /dev/null 2>&1; then \
-               cppcheck --inline-suppr --quiet --force --error-exitcode=2 \
-               ${top_srcdir}; \
+               cppcheck --quiet --force --error-exitcode=2 --inline-suppr \
+                       --suppressions-list=.github/suppressions.txt \
+                       -UHAVE_SSE2 -UHAVE_AVX512F -UHAVE_UIO_ZEROCOPY \
+                       -UHAVE_DNLC ${top_srcdir}; \
        fi
 
 paxcheck:
@@ -87,5 +94,6 @@ etags:
 tags: ctags etags
 
 pkg: @DEFAULT_PACKAGE@
+pkg-dkms: @DEFAULT_PACKAGE@-dkms
 pkg-kmod: @DEFAULT_PACKAGE@-kmod
 pkg-utils: @DEFAULT_PACKAGE@-utils