X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2FMakefile.am;h=2d4192eeba947176ab66a1232aa04ee572009eb7;hb=090c677210ee2946d99c71412e4ff762bb300f4f;hp=0a304604a8511629e5c8ca2d440ef5b5907b0899;hpb=616e61d0c24f2316b2cc832818d3410a68a2eb24;p=fs%2Flustre-release.git diff --git a/lustre/Makefile.am b/lustre/Makefile.am index 0a30460..2d4192e 100644 --- a/lustre/Makefile.am +++ b/lustre/Makefile.am @@ -5,15 +5,62 @@ AUTOMAKE_OPTIONS = foreign -# NOTE: keep extN before mds -SUBDIRS = ldlm ptlrpc llite lib obdecho mdc osc extN mds ost -SUBDIRS+= utils tests obdfilter obdclass obdfs demos doc scripts -EXTRA_DIST = BUGS FDL Rules include patches +if LINUX25 +DIRS24 = +else +DIRS24 = ptlbd +endif + +# just until things are farther along +if CRAY_PORTALS +UTILS_TESTS = +else +UTILS_TESTS = utils tests +endif + +if LIBLUSTRE +SUBDIRS = portals obdclass lov ptlrpc obdecho osc utils mdc lvfs liblustre lmv +else +SUBDIRS = lvfs portals obdclass include $(DIRS24) mds obdfilter mdc osc ost +SUBDIRS+= llite obdecho lov cobd doc scripts conf ptlrpc lmv $(UTILS_TESTS) +endif + + +if SNAPFS +SUBDIRS+= snapfs +endif + +if SMFS +SUBDIRS += smfs +endif +DIST_SUBDIRS = $(SUBDIRS) liblustre snapfs smfs +EXTRA_DIST = BUGS FDL Rules kernel_patches # We get the version from the spec file. -configure: scripts/lustre.spec.in +CONFIGURE_DEPENDENCIES = scripts/lustre.spec.in dist-hook: find $(distdir) -name .deps | xargs rm -rf + find $(distdir) -name CVS | xargs rm -rf include $(top_srcdir)/Rules + +rpms: dist Makefile + rpmbuild -ta $(distdir).tar.gz + +CSTK=/tmp/checkstack +CSTKO=/tmp/checkstack.orig + +checkstack: + [ -f ${CSTK} -a ! -s ${CSTKO} ] && mv ${CSTK} ${CSTKO} || true + for i in ${SUBDIRS} portals/knals/*; do \ + MOD=$$i/`basename $$i`.o; \ + [ -f $$MOD ] && objdump -d $$MOD | perl tests/checkstack.pl; \ + done | sort -nr > ${CSTK} + [ -f ${CSTKO} ] && ! diff -u ${CSTKO} ${CSTK} || head -30 ${CSTK} + +checkstack-update: + [ -f ${CSTK} ] && mv ${CSTK} ${CSTKO} + +checkstack-clean: + rm -f ${CSTK} ${CSTKO}