X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2FMakefile.am;h=8315ca70f157c0dd7cac6a5da7fabd297db5a303;hb=e906f49b50e51524ed264b0149be3c2d86068c47;hp=266acf63ffa78dfd80fb4459e4e28dd76ef03c99;hpb=9bb4c2413323c2bc7bb0686ab6b86f0ca6215781;p=fs%2Flustre-release.git diff --git a/lustre/Makefile.am b/lustre/Makefile.am index 266acf6..8315ca7 100644 --- a/lustre/Makefile.am +++ b/lustre/Makefile.am @@ -5,14 +5,24 @@ AUTOMAKE_OPTIONS = foreign -# NOTE: keep extN before mds -SUBDIRS = lov utils obdclass ldlm ptlrpc llite lib obdecho mdc osc extN -SUBDIRS+= mds ost tests obdfilter demos doc scripts -DIST_SUBDIRS = $(SUBDIRS) -EXTRA_DIST = BUGS FDL Rules include patches archdep.m4 +if LINUX25 +DIRS24 = +else +DIRS24 = ptlbd +endif + +if LIBLUSTRE +SUBDIRS = portals obdclass lov ptlrpc obdecho osc utils mdc lvfs #liblustre +else +SUBDIRS = lvfs portals obdclass include $(DIRS24) mds utils obdfilter mdc osc ost +SUBDIRS+= llite obdecho lov cobd tests doc scripts conf ptlrpc +endif + +DIST_SUBDIRS = $(SUBDIRS) liblustre +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 @@ -21,5 +31,21 @@ dist-hook: include $(top_srcdir)/Rules rpms: dist Makefile - rpm -ta $(distdir).tar.gz + 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}