X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f6ac78b3b68e90973da62167c4358bed0c5401c5..8f66cc3ad8199d974bab145bad7a87843e63afae:/configure.ac diff --git a/configure.ac b/configure.ac index db59858e06..ad712db17f 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ(2.59) # We need a recent ACI # A CI_PREREQ(2003.01.16) -AC_INIT([simgrid],[2.91],[simgrid2-users@listes.ens-lyon.fr]) +AC_INIT([simgrid],[2.92-cvs],[simgrid2-users@listes.ens-lyon.fr]) AC_CONFIG_SRCDIR([include/gras.h]) AC_CONFIG_HEADERS([src/gras_config.h]) @@ -125,27 +125,36 @@ AC_CONFIG_FILES([ src/Makefile src/amok/Makefile examples/Makefile - examples/msg/Makefile - examples/gras/ping/Makefile examples/gras/ping/test_sg examples/gras/ping/test_rl + examples/msg/Makefile examples/msg/run_msg_test + examples/gras/Makefile + examples/gras/ping/Makefile examples/gras/ping/test_sg examples/gras/ping/test_rl + examples/gras/timer/Makefile examples/gras/timer/test_sg examples/gras/timer/test_rl + examples/gras/chrono/Makefile examples/gras/chrono/test_sg examples/gras/chrono/test_rl doc/Makefile doc/Doxyfile.main doc/Doxyfile.API doc/Doxyfile.Examples - tools/compile-remote-worker + tools/compile-remote-worker tools/Makefile + tools/gras/Makefile testsuite/Makefile testsuite/run_tests testsuite/gras/trp_tcp_usage testsuite/gras/trp_file_usage ],[ - test -e testsuite/run_tests && chmod +x testsuite/run_tests; - test -e testsuite/gras/trp_tcp_usage && chmod +x testsuite/gras/trp_tcp_usage; - test -e testsuite/gras/trp_file_usage&& chmod +x testsuite/gras/trp_file_usage; - test -e tools/compile-remote-worker && chmod +x tools/compile-remote-worker; - test -e examples/gras/ping/test_sg && chmod +x examples/gras/ping/test_sg; - test -e examples/gras/ping/test_rl && chmod +x examples/gras/ping/test_rl; -# test -e examples/gras/bandwidth/test_sg && chmod +x examples/gras/bandwidth/test_sg; - test -e examples/gras/pastry/test_sg && chmod +x examples/gras/pastry/test_sg; - chmod +x $srcdir/tools/gras-check-arch; + for file in \ + testsuite/run_tests \ + testsuite/gras/trp_tcp_usage testsuite/gras/trp_file_usage \ + tools/compile-remote-worker \ + examples/msg/run_msg_test \ + examples/gras/ping/test_sg examples/gras/ping/test_rl \ + examples/gras/timer/test_sg examples/gras/timer/test_rl \ + examples/gras/chrono/test_sg examples/gras/chrono/test_rl \ + ; do \ + test -e $file && chmod +x $file; \ + done + chmod +x $srcdir/tools/gras-check-arch; ]) +# examples/gras/pastry/test_sg +# examples/gras/bandwidth/test_sg