]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - zfs/Makefile.am
UBUNTU: [Config] CONFIG_SND_BCM2708_SOC_ALLO_DIGIONE=m
[mirror_ubuntu-artful-kernel.git] / zfs / Makefile.am
CommitLineData
87d546d8
TG
1ACLOCAL_AMFLAGS = -I config
2
3include config/rpm.am
4include config/deb.am
5include config/tgz.am
6
7
8if CONFIG_USER
9
10endif
11if CONFIG_KERNEL
12SUBDIRS = module include
13
14extradir = @prefix@/src/zfs-$(VERSION)
15extra_HEADERS = zfs.release.in zfs_config.h.in
16
17kerneldir = @prefix@/src/zfs-$(VERSION)/$(LINUX_VERSION)
18nodist_kernel_HEADERS = zfs.release zfs_config.h module/$(LINUX_SYMBOLS)
19endif
20
21AUTOMAKE_OPTIONS = foreign
22EXTRA_DIST = autogen.sh copy-builtin
23EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
24EXTRA_DIST += META DISCLAIMER COPYRIGHT README.markdown OPENSOLARIS.LICENSE
25
26distclean-local::
27 -$(RM) -R autom4te*.cache
28 -find . \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
29 -o -name .pc -o -name .hg -o -name .git \) -prune -o \
30 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
31 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
32 -o -name '.*.rej' -o -name '.script-config' -o -size 0 \
33 -o -name '*%' -o -name '.*.cmd' -o -name 'core' \
34 -o -name 'Makefile' -o -name 'Module.symvers' \
35 -o -name '*.order' -o -name '*.markers' \) \
36 -type f -print | xargs $(RM)
37
38dist-hook:
39 sed -i 's/Release:[[:print:]]*/Release: $(RELEASE)/' \
40 $(distdir)/META
41
42checkstyle: cstyle shellcheck
43
44cstyle:
45 @find ${top_srcdir} -name '*.[hc]' ! -name 'zfs_config.*' \
46 ! -name '*.mod.c' -type f -exec scripts/cstyle.pl {} \+
47
48shellcheck:
49 @if type shellcheck > /dev/null 2>&1; then \
50 (find ${top_srcdir} -type f -name '*.sh.in' -o -type f \
51 -name '*.sh'; find etc/init.d/zfs*.in -type f) | \
52 grep -v 'zfs-script-config' | \
53 while read file; do \
54 shellcheck --format gcc "$$file"; \
55 done; \
56 fi
57
58lint: cppcheck
59
60cppcheck:
61 @if type cppcheck > /dev/null 2>&1; then \
62 cppcheck --quiet --force ${top_srcdir}; \
63 fi
64
65ctags:
66 $(RM) tags
67 find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
68
69etags:
70 $(RM) TAGS
71 find $(top_srcdir) -name .pc -prune -o -name '*.[hc]' | xargs etags -a
72
73tags: ctags etags
74
75pkg: @DEFAULT_PACKAGE@
76pkg-kmod: @DEFAULT_PACKAGE@-kmod
77pkg-utils: @DEFAULT_PACKAGE@-utils