Files
mirror_zfs/Makefile.am
T

100 lines
2.6 KiB
Makefile
Raw Permalink Normal View History

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