]> granicus.if.org Git - zfs/blob - Makefile.am
Update build system and packaging
[zfs] / Makefile.am
1 ACLOCAL_AMFLAGS = -I config
2
3 include config/rpm.am
4 include config/deb.am
5 include config/tgz.am
6
7 SUBDIRS = include rpm
8 if CONFIG_USER
9 SUBDIRS += udev etc man scripts lib tests cmd contrib
10 endif
11 if CONFIG_KERNEL
12 SUBDIRS += module
13
14 extradir = $(prefix)/src/zfs-$(VERSION)
15 extra_HEADERS = zfs.release.in zfs_config.h.in
16
17 kerneldir = $(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION)
18 nodist_kernel_HEADERS = zfs.release zfs_config.h module/$(LINUX_SYMBOLS)
19 endif
20
21 AUTOMAKE_OPTIONS = foreign
22 EXTRA_DIST  = autogen.sh copy-builtin
23 EXTRA_DIST += config/config.awk config/rpm.am config/deb.am config/tgz.am
24 EXTRA_DIST += META AUTHORS COPYRIGHT LICENSE NOTICE README.md
25
26 @CODE_COVERAGE_RULES@
27
28 distclean-local::
29         -$(RM) -R autom4te*.cache
30         -find . \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \
31                 -o -name .pc -o -name .hg -o -name .git \) -prune -o \
32                 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
33                 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
34                 -o -name '.*.rej' -o -size 0 -o -name '*%' -o -name '.*.cmd' \
35                 -o -name 'core' -o -name 'Makefile' -o -name 'Module.symvers' \
36                 -o -name '*.order' -o -name '*.markers' -o -name '*.gcda' \
37                 -o -name '*.gcno' \) \
38                 -type f -print | xargs $(RM)
39
40 all-local:
41         -${top_srcdir}/scripts/zfs-tests.sh -c
42
43 dist-hook:
44         sed -i 's/Release:[[:print:]]*/Release:      $(RELEASE)/' \
45                 $(distdir)/META
46
47 # For compatibility, create a matching spl-x.y.z directly which contains
48 # symlinks to the updated header and object file locations.  These
49 # compatibility links will be removed in the next major release.
50 if CONFIG_KERNEL
51 install-data-hook:
52         mkdir $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
53         cd $(DESTDIR)$(prefix)/src/spl-$(VERSION) && \
54         ln -s ../zfs-$(VERSION)/include/spl include && \
55         ln -s ../zfs-$(VERSION)/$(LINUX_VERSION) $(LINUX_VERSION) && \
56         ln -s ../zfs-$(VERSION)/zfs_config.h.in spl_config.h.in && \
57         ln -s ../zfs-$(VERSION)/zfs.release.in spl.release.in && \
58         cd $(DESTDIR)$(prefix)/src/zfs-$(VERSION)/$(LINUX_VERSION) && \
59         ln -s zfs_config.h spl_config.h && \
60         ln -s zfs.release spl.release
61 endif
62
63 checkstyle: cstyle shellcheck flake8 commitcheck mancheck testscheck
64
65 commitcheck:
66         @if git rev-parse --git-dir > /dev/null 2>&1; then \
67                 ${top_srcdir}/scripts/commitcheck.sh; \
68         fi
69
70 cstyle:
71         @find ${top_srcdir} -name '*.[hc]' ! -name 'zfs_config.*' \
72                 ! -name '*.mod.c' -type f \
73                 -exec ${top_srcdir}/scripts/cstyle.pl -cpP {} \+
74
75 shellcheck:
76         @if type shellcheck > /dev/null 2>&1; then \
77                 shellcheck --exclude=SC1090 --format=gcc \
78                         $$(find ${top_srcdir}/scripts/*.sh -type f) \
79                         $$(find ${top_srcdir}/cmd/zed/zed.d/*.sh -type f) \
80                         $$(find ${top_srcdir}/cmd/zpool/zpool.d/* -executable); \
81         fi
82
83 mancheck:
84         @if type mandoc > /dev/null 2>&1; then \
85                 find ${top_srcdir}/man/man8 -type f -name 'zfs.8' \
86                         -o -name 'zpool.8' -o -name 'zdb.8' \
87                         -o -name 'zgenhostid.8' | \
88                         xargs mandoc -Tlint -Werror; \
89         fi
90
91 testscheck:
92         @find ${top_srcdir}/tests/zfs-tests/tests -type f \
93                 \( -name '*.ksh' -not -executable \) -o \
94                 \( -name '*.kshlib' -executable \) -o \
95                 \( -name '*.cfg' -executable \) | \
96                 xargs -r stat -c '%A %n' | \
97                 awk '{c++; print} END {if(c>0) exit 1}'
98
99 lint: cppcheck paxcheck
100
101 cppcheck:
102         @if type cppcheck > /dev/null 2>&1; then \
103                 cppcheck --quiet --force --error-exitcode=2 --inline-suppr \
104                         --suppressions-list=.github/suppressions.txt \
105                         -UHAVE_SSE2 -UHAVE_AVX512F -UHAVE_UIO_ZEROCOPY \
106                         -UHAVE_DNLC ${top_srcdir}; \
107         fi
108
109 paxcheck:
110         @if type scanelf > /dev/null 2>&1; then \
111                 ${top_srcdir}/scripts/paxcheck.sh ${top_srcdir}; \
112         fi
113
114 flake8:
115         @if type flake8 > /dev/null 2>&1; then \
116                 flake8 ${top_srcdir}; \
117         fi
118
119 ctags:
120         $(RM) tags
121         find $(top_srcdir) -name .git -prune -o -name '*.[hc]' | xargs ctags
122
123 etags:
124         $(RM) TAGS
125         find $(top_srcdir) -name .pc -prune -o -name '*.[hc]' | xargs etags -a
126
127 tags: ctags etags
128
129 pkg: @DEFAULT_PACKAGE@
130 pkg-dkms: @DEFAULT_PACKAGE@-dkms
131 pkg-kmod: @DEFAULT_PACKAGE@-kmod
132 pkg-utils: @DEFAULT_PACKAGE@-utils