X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ea5f54682849bf0a59ebe0ff8a0c000b21803742..76a2cb65061dc45998500b63050c18bbbea8a09e:/configure.ac diff --git a/configure.ac b/configure.ac index 14c91b4c19..ca8d990af7 100644 --- a/configure.ac +++ b/configure.ac @@ -261,6 +261,18 @@ if test x$ADDR2LINE != x ; then AC_DEFINE_UNQUOTED(ADDR2LINE,"$ADDR2LINE",[Path to the addr2line tool]) fi +AC_SUBST(ac_configure_args) +# Can we make status line about the compilation result? +AC_CHECK_PROG(MD5SUM,md5sum,`which md5sum`) +if test x$MD5SUM != xno ; then + build_version=`find -name '*.[ch]' |grep -v src/ucontext_stack.h | grep -v src/gras_config.h |\ + xargs cat| $MD5SUM | sed 's/ .*$//'` +else + build_version="no_md5sum_binary" +fi +build_id="$PACKAGE ver=$VERSION build=$build_version args=\"$ac_configure_args\"" +AC_SUBST(build_id) + ################### ## Makes the output ## @@ -281,8 +293,25 @@ AC_CONFIG_FILES([ src/ucontext_stack.h ]) +# Tools being embeeded in gramine (stub generator) +AC_CONFIG_FILES([ + tools/Makefile + tools/gras/Makefile +]) + # GRAMINE_CUT_BEGIN +# Tools NOT being embeeded in gramine +AC_CONFIG_FILES([ + tools/graspe-slave +],[ + for file in \ + tools/graspe-slave tools/graspe-master \ + ; do \ + test -e $file && chmod +x $file; \ + done +]) + # Testsuite AC_CONFIG_FILES([ @@ -298,7 +327,13 @@ AC_CONFIG_FILES([ done ]) -# Examples, documentation and tools +# Documentation +AC_CONFIG_FILES([ + doc/Makefile + doc/Doxyfile +]) + +# Examples AC_CONFIG_FILES([ examples/Makefile @@ -321,13 +356,8 @@ AC_CONFIG_FILES([ examples/amok/Makefile examples/amok/bandwidth/Makefile examples/amok/bandwidth/test_sg examples/amok/bandwidth/test_rl examples/amok/saturate/Makefile examples/amok/saturate/test_sg examples/amok/saturate/test_rl - doc/Makefile - doc/Doxyfile - tools/graspe-slave tools/Makefile - tools/gras/Makefile ],[ for file in \ - tools/graspe-slave tools/graspe-master \ \ examples/amok/bandwidth/test_sg examples/amok/bandwidth/test_rl \ examples/amok/saturate/test_sg examples/amok/saturate/test_rl \ @@ -349,7 +379,6 @@ AC_CONFIG_FILES([ done ]) - # examples/gras/chord/test_sg examples/gras/chord/test_rl \ # examples/gras/pastry/test_sg @@ -384,5 +413,6 @@ if test -e CVS && test x$USE_MAINTAINER_MODE != xyes ; then echo "WARNING: ./configure --enable-maintainer-mode $ac_configure_args" echo "WARNING:" fi +echo $build_id > stamp.configure exit 0;