From 8c66de3552065e9a3cb2c258cdf5158dab99de9d Mon Sep 17 00:00:00 2001 From: mquinson Date: Mon, 25 Sep 2006 21:55:28 +0000 Subject: [PATCH] Split the AC_CONFIG_FILES macro call to ease a future implementation of GRAMINE git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2813 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- configure.ac | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 3e1c24b6da..d05da40c66 100644 --- a/configure.ac +++ b/configure.ac @@ -260,11 +260,34 @@ fi # src/amok/Makefile SG_CONFIGURE_PART(Generating files...) + +# Core of the libraries + AC_CONFIG_FILES([ Makefile include/Makefile src/Makefile src/ucontext_stack.h +]) + +# Testsuite + +AC_CONFIG_FILES([ + testsuite/Makefile + testsuite/run_tests + testsuite/gras/trp_tcp_usage testsuite/gras/trp_file_usage +],[ + for file in \ + testsuite/run_tests \ + testsuite/gras/trp_tcp_usage testsuite/gras/trp_file_usage \ + ; do \ + test -e $file && chmod +x $file; \ + done +]) + +# Examples, documentation and tools + +AC_CONFIG_FILES([ examples/Makefile examples/msg/Makefile examples/msg/run_msg_test examples/simdag/Makefile examples/simdag/test_simdag @@ -289,13 +312,8 @@ AC_CONFIG_FILES([ doc/Doxyfile tools/graspe-slave tools/Makefile tools/gras/Makefile - testsuite/Makefile - testsuite/run_tests - testsuite/gras/trp_tcp_usage testsuite/gras/trp_file_usage ],[ for file in \ - testsuite/run_tests \ - testsuite/gras/trp_tcp_usage testsuite/gras/trp_file_usage \ tools/graspe-slave tools/graspe-master \ \ examples/amok/bandwidth/test_sg examples/amok/bandwidth/test_rl \ -- 2.20.1