Whamcloud - gitweb
LU-8602 gss: Fix autoconf check for crypto_hash
[fs/lustre-release.git] / autoMakefile.am
1 SUBDIRS := @LDISKFS_SUBDIR@ \
2         . \
3         @LUSTREIOKIT_SUBDIR@ \
4         @LIBCFS_SUBDIR@ \
5         @SNMP_SUBDIR@ \
6         lnet \
7         lustre
8
9 DIST_SUBDIRS := ldiskfs \
10         lustre-iokit \
11         @LIBCFS_SUBDIR@ \
12         @SNMP_DIST_SUBDIR@ \
13         lnet \
14         lustre \
15         config
16
17 AUTOMAKE_OPTIONS = foreign
18
19 FIND_TAG_FILES_CMD = find $(top_srcdir) \
20                      -path $(top_srcdir)/ldiskfs/linux-stage \
21                      -prune -false -o -type f -name '*.[hc]'
22
23 # these empty rules are needed so that automake doesn't add its own
24 # recursive rules
25 etags-recursive:
26
27 ctags-recursive:
28
29 tags-recursive:
30
31 TAGS: etags
32
33 tags: ctags etags
34
35 etags:
36         $(RM) $(top_srcdir)/TAGS
37         ETAGSF=`etags --version | grep -iq exuberant && \
38                 echo "-I __initdata,__exitdata,EXPORT_SYMBOL"`; \
39         $(FIND_TAG_FILES_CMD) | xargs etags $$ETAGSF -a
40
41 ctags:
42         $(RM) $(top_srcdir)/tags
43         CTAGSF=`ctags --version | grep -iq exuberant && \
44                 echo "-I __initdata,__exitdata,EXPORT_SYMBOL"`; \
45         $(FIND_TAG_FILES_CMD) | xargs ctags $$CTAGSF -a
46
47 cscope-recursive:
48
49 cscope:
50         $(RM) $(top_srcdir)/cscope*.out $(top_srcdir)/cscope.files
51         $(FIND_TAG_FILES_CMD) > cscope.files
52         cscope -bRq
53
54 mkid:
55         $(FIND_TAG_FILES_CMD) | xargs mkid
56
57
58 doxygen:  doxygen-api doxygen-ref
59
60 doxygen-%: build/doxyfile.%
61         doxygen $<
62
63 if MODULES
64 .PHONY: ldiskfs-sources
65
66 ldiskfs-sources:
67 if LDISKFS_ENABLED
68         $(MAKE) sources -C @LDISKFS_SUBDIR@ || exit $$?
69 endif
70
71 if LINUX
72 all-am: modules
73
74 modules: undef.h ldiskfs-sources
75         $(MAKE) LDFLAGS= CC="$(CC)" -C $(LINUX_OBJ) \
76         -f $(PWD)/build/Makefile LUSTRE_LINUX_CONFIG=$(LINUX_CONFIG) \
77         LINUXINCLUDE='-I$$(srctree)/arch/$$(SRCARCH)/include -Iarch/$$(SRCARCH)/include/generated -Iinclude $$(if $$(KBUILD_SRC),-Iinclude2 -I$$(srctree)/include) -I$$(srctree)/arch/$$(SRCARCH)/include/uapi -Iarch/$$(SRCARCH)/include/generated/uapi -I$$(srctree)/include/uapi -Iinclude/generated/uapi -include $(CONFIG_INCLUDE)' \
78         $(MODULE_TARGET)=$(PWD) -o tmp_include_depends -o scripts -o \
79         include/config/MARKER $@
80 endif # LINUX
81
82 endif # MODULES
83
84 all: undef.h
85
86 undef.h: config.h.in
87         grep -v config.h.in config.h.in > $@
88
89 dist-hook: undef.h
90         find $(distdir) -name .deps -o \
91                         -name CVS -o \
92                         -name .svn -o \
93                         -name .git -o \
94                         -name .#* -exec rm -rf {} \;
95
96 EXTRA_DIST = @PACKAGE_TARNAME@.spec     \
97         build/Makefile                  \
98         build/Rules.in                  \
99         config.h.in                     \
100         lustre-dkms_pre-build.sh        \
101         lustre-dkms_post-build.sh       \
102         LUSTRE-VERSION-GEN              \
103         LUSTRE-VERSION-FILE             \
104         undef.h
105
106 # contrib is a directory.  Putting a directory in EXTRA_DIST
107 # recursively includes the entire directory contents in the
108 # distribution tarball (the tarball created with "make dist").
109 EXTRA_DIST += contrib
110 EXTRA_DIST += rpm
111
112 rpm-local:
113         @(if test -z "$(RPMBUILD)"; then \
114                 echo -e "\n" \
115         "*** Required util 'rpmbuild' missing. Please install the\n" \
116         "*** package for your distribution which provides 'rpmbuild',\n" \
117         "*** re-run configure, and try again.\n"; \
118                 exit 1; \
119         fi; \
120         $(MKDIR_P) $(rpmbuilddir)/TMP   && \
121         $(MKDIR_P) $(rpmbuilddir)/BUILD && \
122         $(MKDIR_P) $(rpmbuilddir)/RPMS  && \
123         $(MKDIR_P) $(rpmbuilddir)/SRPMS && \
124         $(MKDIR_P) $(rpmbuilddir)/SPECS && \
125         $(MKDIR_P) $(rpmbuilddir)/SOURCES)
126
127 if SERVER
128 DKMS_PACKAGE=$(PACKAGE)
129 DKMS_SERVER=--with servers
130 else
131 DKMS_PACKAGE=$(PACKAGE)-client
132 DKMS_SERVER=--without servers
133 endif
134
135 # Only zfs Lustre DKMS Server is supported, so previous configure command
136 # must use related parameters for success.
137 dkms-srpm: $(PACKAGE)-dkms.spec dist Makefile
138         rpmbuilddir=`mktemp -t -d rpmbuild-@PACKAGE@-$$USER-XXXXXXXX`; \
139         $(MAKE) $(AM_MAKEFLAGS) \
140                 rpmbuilddir="$$rpmbuilddir" rpm-local || exit 1; \
141         $(RPMBUILD) \
142                 --define "_tmppath $$rpmbuilddir/TMP" \
143                 --define "_topdir $$rpmbuilddir" \
144                 --define "_sourcedir $(top_srcdir)" \
145                 $(DKMS_SERVER) \
146                 --bs $(PACKAGE)-dkms.spec || exit 1; \
147         cp $$rpmbuilddir/SRPMS/*.src.rpm $(top_srcdir) || exit 1; \
148         rm -rf $$rpmbuilddir
149
150 dkms-rpm: dkms-srpm
151         rpmbuilddir=`mktemp -t -d rpmbuild-@PACKAGE@-$$USER-XXXXXXXX`; \
152         $(RPMBUILD) \
153                 --define "_tmppath $$rpmbuilddir/TMP" \
154                 --define "_topdir $$rpmbuilddir" \
155                 @RPMBUILD_BINARY_ARGS@ \
156                 --rebuild $(DKMS_PACKAGE)-dkms-*.src.rpm || exit 1; \
157         cp $$rpmbuilddir/RPMS/*/*.rpm $(top_srcdir) || exit 1; \
158         rm -rf $$rpmbuilddir
159
160 rpms: srpm
161         rpmbuilddir=`mktemp -t -d rpmbuild-@PACKAGE@-$$USER-XXXXXXXX`; \
162         $(MAKE) $(AM_MAKEFLAGS) \
163                 rpmbuilddir="$$rpmbuilddir" rpm-local || exit 1; \
164         $(RPMBUILD) \
165                 --define "_tmppath $$rpmbuilddir/TMP" \
166                 --define "_topdir $$rpmbuilddir" \
167                 @RPMBUILD_BINARY_ARGS@ \
168                 --rebuild $(distdir)-*.src.rpm || exit 1; \
169         cp $$rpmbuilddir/RPMS/*/*.rpm $(top_srcdir) || exit 1; \
170         rm -rf $$rpmbuilddir
171
172 srpm: @PACKAGE_TARNAME@.spec dist Makefile
173         rpmbuilddir=`mktemp -t -d rpmbuild-@PACKAGE@-$$USER-XXXXXXXX`; \
174         $(MAKE) $(AM_MAKEFLAGS) \
175                 rpmbuilddir="$$rpmbuilddir" rpm-local || exit 1; \
176         cp $(top_srcdir)/rpm/* $(top_srcdir); \
177         $(RPMBUILD) \
178                 --define "_tmppath $$rpmbuilddir/TMP" \
179                 --define "_topdir $$rpmbuilddir" \
180                 --define "dist %{nil}" \
181                 -ts $(distdir).tar.gz || exit 1; \
182         cp $$rpmbuilddir/SRPMS/$(distdir)-*.src.rpm $(top_srcdir) || exit 1; \
183         rm -rf $$rpmbuilddir
184
185 # In the debs target, first make sure what's in the changelog reflects
186 # the software version.
187 debs: undef.h
188         lversion=$$(echo @VERSION@ | tr '_' '-'); \
189         cversion=$$(sed -ne '1s/^lustre (\(.*\)-[0-9][0-9]*).*$$/\1/p' debian/changelog); \
190         if [ "$$lversion" != "$$cversion" ]; then \
191                 echo -e "1i\nlustre ($$lversion-1) unstable; urgency=low\n\n  * Automated changelog entry update\n\n -- Brian J. Murrell <brian@interlinx.bc.ca>  $$(date -R)\n\n.\nwq" | ed debian/changelog; \
192         fi; \
193         rm -rf debs; \
194         if test "x@ENABLE_SERVER@" = "xyes"; then \
195                 DEB_BUILD_PROFILES="server"; \
196         else \
197                 DEB_BUILD_PROFILES="client"; \
198         fi; \
199         if test "x@ENABLE_LDISKFS@" = "xyes"; then \
200                 export DEB_BUILD_PROFILES="$${DEB_BUILD_PROFILES} ldiskfs"; \
201         fi; \
202         if test "x@ENABLE_ZFS@" = "xyes"; then \
203                 export DEB_BUILD_PROFILES="$${DEB_BUILD_PROFILES} zfs"; \
204                 export SPL_SRC="@SPL@"; \
205                 export ZFS_SRC="@ZFS@"; \
206                 echo "ZFS support is enabled. Will expect pre-compiled SPL and ZFS sources in:"; \
207                 echo "SPL: $${SPL_SRC}"; \
208                 echo "ZFS: $${ZFS_SRC}"; \
209         fi; \
210         export KERNEL_CFG="$(LINUX_CONFIG)"; \
211         export KERNEL_SRC="$(LINUX)"; \
212         echo "Enabled Build Profiles: $${DEB_BUILD_PROFILES}"; \
213         echo "Kernel Source: $${KERNEL_SRC}"; \
214         echo "Kernel Config: $${KERNEL_CFG}"; \
215         dpkg-buildpackage -us -uc -I.git -I\*.out[0-9]\* -I\*.swp || { \
216                 rc=$${PIPESTATUS[0]}; \
217                 [ $${rc} -gt 1 ] && exit $${rc}; \
218                 exit 0; \
219         }; \
220         export KPKG_DEST_DIR="$$(pwd)/.." && \
221         version=$$(sed -ne '1s/^lustre (\(.*\)).*$$/\1/p' debian/changelog) && \
222         rm -rf debian/tmp/modules-deb && \
223         mkdir debian/tmp/modules-deb && \
224         pushd debian/tmp/modules-deb && \
225         dpkg -x ../../../../lustre-source_$${version}_all.deb $$(pwd) && \
226         mkdir usr_src/ && \
227         tar -C usr_src/ -xjf usr/src/lustre.tar.bz2 && \
228         chmod 755 usr_src/modules/lustre/debian/rules && \
229         mkdir -p usr_share_modass && \
230         ln -s /usr/share/modass/include/ usr_share_modass/ && \
231         ln -s /usr/share/modass/packages/ usr_share_modass/ && \
232         echo "lustre" > usr_share_modass/compliant.list && \
233         export MA_DIR=$$(pwd)/usr_share_modass && \
234         KVERS=$${KVERS:-$(LINUXRELEASE)} && \
235         if test "x@ENABLEO2IB@" = "xno"; then \
236                 export IB_OPTIONS="--with-o2ib=no"; \
237         else \
238                 if test -n "@O2IBPATH@"; then \
239                         export IB_OPTIONS="--with-o2ib=@O2IBPATH@"; \
240                 fi; \
241         fi; \
242         export KSRC_TREE=$(LINUX) && \
243         KSRC=$${KSRC:-$(LINUX_OBJ)} && \
244         m-a build $${KSRC:+-k $$KSRC} $${KVERS:+-l $$KVERS} -i -u $$(pwd) lustre && \
245         popd && \
246         VER=$$(sed -ne '1s/^lustre (\(.*-[0-9][0-9]*\)).*$$/\1/p' debian/changelog) && \
247         mkdir -p debs && \
248         mv ../linux-patch-lustre_$${VER}_all.deb ../lustre-dev_$${VER}_*.deb \
249            ../lustre-source_$${VER}_all.deb ../lustre-tests_$${VER}_*.deb \
250            ../lustre-*-utils_$${VER}_*.deb ../lustre_$${VER}.dsc \
251            ../lustre_$${VER}_*.changes ../lustre_$${VER}.tar.gz \
252            ../lustre-*-modules-$${KVERS}_$${VER}_*.deb \
253            debs/
254
255 if USES_DPKG
256 EXTRA_DIST += debian/*
257 endif
258
259 CSTK=/tmp/checkstack
260 CSTKO=/tmp/checkstack.orig
261
262 checkstack:
263         [ -f ${CSTK} -a ! -s ${CSTKO} ] && mv -f ${CSTK} ${CSTKO} || true
264         { for MOD in $$(find . -name "*.ko"); do                             \
265                 objdump -d $$MOD | perl contrib/scripts/checkstack.pl;       \
266           done } | grep -v " bug " | sort -nr | uniq > ${CSTK}
267         [ -f ${CSTKO} ] && ! diff -u ${CSTKO} ${CSTK} || head -n 30 ${CSTK}
268
269 checkstack-update:
270         [ -f ${CSTK} ] && mv -f ${CSTK} ${CSTKO}
271
272 checkstack-clean:
273         rm -f ${CSTK} ${CSTKO}