1 # Copyright (C) 2001 Cluster File Systems, Inc.
3 # This code is issued under the GNU General Public License.
4 # See the file COPYING in this distribution
6 AUTOMAKE_OPTIONS = foreign
8 SUBDIRS = . include portals ldiskfs lvfs obdclass lov ldlm ptlrpc \
9 obdecho osc mdc mds obdfilter ost llite cobd ptlbd snapfs smfs cmobd \
10 liblustre doc utils tests conf scripts
12 EXTRA_DIST = BUGS FDL Rules.in kernel_patches kernel-tests/Makefile \
15 # these empty rules are needed so that automake doesn't add its own
26 rm -f $(top_srcdir)/TAGS
27 ETAGSF=`etags --version | grep -iq exuberant && \
28 echo "-I __initdata,__exitdata,EXPORT_SYMBOL"`; \
29 find $(top_srcdir) -name '*.[hc]' | xargs etags $$ETAGSF -a
31 rm -f $(top_srcdir)/tags
32 CTAGSF=`ctags --version | grep -iq exuberant && \
33 echo "-I __initdata,__exitdata,EXPORT_SYMBOL"`; \
34 find $(top_srcdir) -name '*.[hc]' | xargs ctags $$CTAGSF -a
44 $(MAKE) $(ARCH_UM) -C $(LINUX) -f $(PWD)/kernel-tests/Makefile LUSTRE_LINUX_CONFIG=$(LINUX_CONFIG) -o scripts -o include/config/MARKER _sfdep_$(PWD) _FASTDEP_ALL_SUB_DIRS="$(PWD)"
48 LDISKFS = ldiskfs-sources
50 $(MAKE) sources -C ldiskfs
54 $(MAKE) sources -C lvfs
56 modules: lustre_build_version $(DEP) $(LDISKFS) lvfs-sources
57 $(MAKE) $(ARCH_UM) -C $(LINUX) -f $(PWD)/kernel-tests/Makefile LUSTRE_LINUX_CONFIG=$(LINUX_CONFIG) SUBDIRS=$(PWD) -o tmp_include_depends -o scripts -o include/config/MARKER $@
61 all-recursive: lustre_build_version
64 perl $(top_builddir)/scripts/version_tag.pl $(top_srcdir) $(top_builddir) > tmpver
65 echo "#define LUSTRE_RELEASE @RELEASE@" >> tmpver
66 cmp -s $(top_builddir)/include/linux/lustre_build_version.h tmpver \
69 mv tmpver $(top_builddir)/include/linux/lustre_build_version.h
72 find $(distdir) -name .deps | xargs rm -rf
73 find $(distdir) -name CVS | xargs rm -rf
76 rpmbuild -ta $(distdir).tar.gz
79 CSTKO=/tmp/checkstack.orig
82 [ -f ${CSTK} -a ! -s ${CSTKO} ] && mv ${CSTK} ${CSTKO} || true
83 for i in ${SUBDIRS} portals/knals/*; do \
84 MOD=$$i/`basename $$i`.o; \
85 [ -f $$MOD ] && objdump -d $$MOD | perl tests/checkstack.pl; \
86 done | sort -nr > ${CSTK}
87 [ -f ${CSTKO} ] && ! diff -u ${CSTKO} ${CSTK} || head -30 ${CSTK}
90 [ -f ${CSTK} ] && mv ${CSTK} ${CSTKO}
93 rm -f ${CSTK} ${CSTKO}