From: mquinson Date: Tue, 3 Jun 2008 15:56:24 +0000 (+0000) Subject: top_srcdir is not supposed to be a relative path X-Git-Tag: v3.3~438 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/c818afba85a6fa4a233d1cfd96711585c19e9fbe top_srcdir is not supposed to be a relative path git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@5508 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/examples/amok/Makefile.in b/examples/amok/Makefile.in index 5e659217ca..0d67fa7714 100644 --- a/examples/amok/Makefile.in +++ b/examples/amok/Makefile.in @@ -776,11 +776,11 @@ uninstall-am: # Take care of generatated sources bandwidth/_bandwidth_simulator.c bandwidth/_bandwidth_sensor.c bandwidth/_bandwidth_maestro.c : bandwidth/bandwidth.c bandwidth/bandwidth.xml $(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ - cd bandwidth; ../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ bandwidth ../$(top_srcdir)/examples/amok/bandwidth/bandwidth.xml + cd bandwidth; ../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ bandwidth $(top_srcdir)/examples/amok/bandwidth/bandwidth.xml # Take care of generatated sources saturate/_saturate_simulator.c saturate/_saturate_sensor.c saturate/_saturate_maestro.c : saturate/saturate.c saturate/saturate.xml $(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ - cd saturate; ../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ saturate ../$(top_srcdir)/examples/amok/saturate/saturate.xml + cd saturate; ../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ saturate $(top_srcdir)/examples/amok/saturate/saturate.xml dist-files: @for n in $(DISTFILES) ; do echo $(SRCFILE)$$n; done diff --git a/teshsuite/Makefile.am b/teshsuite/Makefile.am index a5be5edd49..90efaad653 100644 --- a/teshsuite/Makefile.am +++ b/teshsuite/Makefile.am @@ -96,7 +96,7 @@ gras_msg_handle_msg_handle_server_LDADD= $(LDADD_RL) gras/msg_handle/_msg_handle_simulator.c gras/msg_handle/_msg_handle_client.c gras/msg_handle/_msg_handle_server.c : gras/msg_handle/msg_handle.c gras/msg_handle/msg_handle.xml $(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ mkdir -p gras/msg_handle; \ cd gras/msg_handle;\ - ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ msg_handle ../../$(top_srcdir)/teshsuite/gras/msg_handle/msg_handle.xml + ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ msg_handle $(top_srcdir)/teshsuite/gras/msg_handle/msg_handle.xml if GRAS_ARCH_32_BITS @@ -122,7 +122,7 @@ gras_empty_main_empty_main_function_LDADD= $(LDADD_RL) gras/empty_main/_empty_main_simulator.c gras/empty_main/_empty_main_function.c : gras/empty_main/empty_main.c gras/empty_main/empty_main.xml $(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ mkdir -p gras/empty_main; \ cd gras/empty_main;\ - ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ empty_main ../../$(top_srcdir)/teshsuite/gras/empty_main/empty_main.xml + ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ empty_main $(top_srcdir)/teshsuite/gras/empty_main/empty_main.xml TESTS += gras/empty_main/test_rl gras/empty_main/test_sg @@ -143,7 +143,7 @@ gras_small_sleep_small_sleep_function_LDADD= $(LDADD_RL) gras/small_sleep/_small_sleep_simulator.c gras/small_sleep/_small_sleep_function.c : gras/small_sleep/small_sleep.c gras/small_sleep/small_sleep.xml $(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ mkdir -p gras/small_sleep; \ cd gras/small_sleep;\ - ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ small_sleep ../../$(top_srcdir)/teshsuite/gras/small_sleep/small_sleep.xml + ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ small_sleep $(top_srcdir)/teshsuite/gras/small_sleep/small_sleep.xml if GRAS_ARCH_32_BITS TESTS += gras/small_sleep/test_sg_32 diff --git a/teshsuite/Makefile.in b/teshsuite/Makefile.in index 63ed689e71..a80e72d344 100644 --- a/teshsuite/Makefile.in +++ b/teshsuite/Makefile.in @@ -1454,21 +1454,21 @@ gras/datadesc/datadesc_structs.c: gras/datadesc/mk_datadesc_structs.pl gras/msg_handle/_msg_handle_simulator.c gras/msg_handle/_msg_handle_client.c gras/msg_handle/_msg_handle_server.c : gras/msg_handle/msg_handle.c gras/msg_handle/msg_handle.xml $(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ mkdir -p gras/msg_handle; \ cd gras/msg_handle;\ - ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ msg_handle ../../$(top_srcdir)/teshsuite/gras/msg_handle/msg_handle.xml + ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ msg_handle $(top_srcdir)/teshsuite/gras/msg_handle/msg_handle.xml #################################################### gras/empty_main/_empty_main_simulator.c gras/empty_main/_empty_main_function.c : gras/empty_main/empty_main.c gras/empty_main/empty_main.xml $(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ mkdir -p gras/empty_main; \ cd gras/empty_main;\ - ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ empty_main ../../$(top_srcdir)/teshsuite/gras/empty_main/empty_main.xml + ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ empty_main $(top_srcdir)/teshsuite/gras/empty_main/empty_main.xml ########################################################################### gras/small_sleep/_small_sleep_simulator.c gras/small_sleep/_small_sleep_function.c : gras/small_sleep/small_sleep.c gras/small_sleep/small_sleep.xml $(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ mkdir -p gras/small_sleep; \ cd gras/small_sleep;\ - ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ small_sleep ../../$(top_srcdir)/teshsuite/gras/small_sleep/small_sleep.xml + ../../$(top_builddir)/tools/gras/gras_stub_generator@EXEEXT@ small_sleep $(top_srcdir)/teshsuite/gras/small_sleep/small_sleep.xml dist-files: @for n in $(DISTFILES) ; do echo $(SRCFILE)$$n; done