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
|
2015-07-01 22:23:09 +00:00
|
|
|
SUBDIRS += udev etc man scripts tests lib 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
|
|
|
|
|
|
|
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' \
|
2010-09-01 19:54:51 +00:00
|
|
|
-o -name '.*.rej' -o -name '.script-config' -o -size 0 \
|
2010-08-26 18:22:58 +00:00
|
|
|
-o -name '*%' -o -name '.*.cmd' -o -name 'core' \
|
|
|
|
-o -name 'Makefile' -o -name 'Module.symvers' \
|
2010-09-01 19:54:51 +00:00
|
|
|
-o -name '*.order' -o -name '*.markers' \) \
|
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
|
|
|
|
|
2015-05-18 18:49:24 +00:00
|
|
|
checkstyle: cstyle shellcheck
|
|
|
|
|
|
|
|
cstyle:
|
2013-12-18 00:11:57 +00:00
|
|
|
@find ${top_srcdir} -name '*.[hc]' ! -name 'zfs_config.*' \
|
|
|
|
! -name '*.mod.c' -type f -exec scripts/cstyle.pl {} \+
|
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 \
|
|
|
|
(find ${top_srcdir} -type f -name '*.sh.in' -o -type f \
|
|
|
|
-name '*.sh'; find etc/init.d/zfs*.in -type f) | \
|
|
|
|
grep -v 'zfs-script-config' | \
|
|
|
|
while read file; do \
|
|
|
|
shellcheck --format gcc "$$file"; \
|
|
|
|
done; \
|
|
|
|
fi
|
|
|
|
|
2016-08-01 18:00:47 +00:00
|
|
|
lint: cppcheck
|
|
|
|
|
|
|
|
cppcheck:
|
|
|
|
@if type cppcheck > /dev/null 2>&1; then \
|
2016-09-09 18:01:22 +00:00
|
|
|
cppcheck --quiet --force --error-exitcode=2 ${top_srcdir}; \
|
2016-08-01 18:00:47 +00:00
|
|
|
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@
|
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
|