X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3d02a0ae2e1733d919da46b91851b5741a81aec2..d0088c5ca40d4af018ea5f874550e1405fef9a93:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 60db739faa..43966a91a7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,11 +1,11 @@ -SUBDIRS= include src examples testsuite doc +SUBDIRS= include src tools examples testsuite doc DISTCLEANFILES = *~ ACLOCAL = aclocal-1.9 -I acmacro AUTOMAKE_OPTIONS = gnu DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc -EXTRA_DIST = bootstrap COPYING INSTALL NEWS README README.IEEE TODO AUTHORS ChangeLog ChangeLog.debian\ +EXTRA_DIST = bootstrap COPYING INSTALL NEWS README README.IEEE TODO AUTHORS ChangeLog \ acmacro/aci.m4 \ tools/gras-check-arch tools/compile-remote-worker.in \ tools/MSG_visualization tools/platform_generation \ @@ -79,9 +79,9 @@ splint: ## Cruft for remote compilation ## -MACHINES ?= valnure.cs.ucsb.edu sperm.cs.ucsb.edu basalt.cs.ucsb.edu \ - graal.ens-lyon.fr allo-psmn.ens-lyon.fr \ - nala.cs.utk.edu +MACHINES ?= graal.ens-lyon.fr allo-psmn.ens-lyon.fr \ + valnure.cs.ucsb.edu sperm.cs.ucsb.edu basalt.cs.ucsb.edu \ + nala.cs.utk.edu AIX # ACTION: What to do there # possible values: @@ -97,11 +97,11 @@ MACHINES ?= valnure.cs.ucsb.edu sperm.cs.ucsb.edu basalt.cs.ucsb.edu \ # default value: ACTION ?= clean untar config compile check -REMOTE_PREFIX ?='${HOME}/gras' +REMOTE_PREFIX ?='simgrid' remote: @PACKAGE@-@VERSION@.tar.gz tools/compile-remote-worker @echo;echo "----[ Recompile the package on remote hosts ]----" - @test -e buildlogs/@PACKAGE@-@VERSION@ || mkdir -p buildlogs/@PACKAGE@-@VERSION@ + @test -e @srcdir@/buildlogs/@PACKAGE@-@VERSION@ || mkdir -p @srcdir@/buildlogs/@PACKAGE@-@VERSION@ @failed=0;\ for site in $(MACHINES) ; do \ machine=`echo $$site |sed 's/^\([^%]*\)%.*$$/\1/'`;\ @@ -118,16 +118,16 @@ remote: @PACKAGE@-@VERSION@.tar.gz tools/compile-remote-worker scp @srcdir@/@PACKAGE@-@VERSION@.tar.gz tools/compile-remote-worker \ $$machine:$(REMOTE_PREFIX)/src;\ \ - echo "-- Compiling... (the output gets into buildlogs/@PACKAGE@-@VERSION@/$$site.log)"; \ + echo "-- Compiling... (the output gets into @srcdir@/buildlogs/@PACKAGE@-@VERSION@/$$site.log)"; \ if echo $$site | grep '%' >/dev/null ; then \ - if ssh $$machine "env REMOTE_PREFIX=$(REMOTE_PREFIX) ssh -A $$machine2 $$cmd" 2>&1 > buildlogs/@PACKAGE@-@VERSION@/$$site.log;\ - then echo "Sucessful"; else failed=1;echo "Failed (check buildlogs/@PACKAGE@-@VERSION@/$$site.log)"; fi;echo; \ + if ssh $$machine "env REMOTE_PREFIX=$(REMOTE_PREFIX) ssh -A $$machine2 $$cmd" 2>&1 > @srcdir@/buildlogs/@PACKAGE@-@VERSION@/$$site.log;\ + then echo "Sucessful"; else failed=1;echo "Failed (check @srcdir@/buildlogs/@PACKAGE@-@VERSION@/$$site.log)"; fi;echo; \ else \ - if ssh $$machine "eval $$cmd" 2>&1 > buildlogs/@PACKAGE@-@VERSION@/$$site.log ;\ - then echo "Sucessful"; else failed=1;echo "Failed (check buildlogs/@PACKAGE@-@VERSION@/$$site.log)"; fi;echo; \ + if ssh $$machine "eval $$cmd" 2>&1 > @srcdir@/buildlogs/@PACKAGE@-@VERSION@/$$site.log ;\ + then echo "Sucessful"; else failed=1;echo "Failed (check @srcdir@/buildlogs/@PACKAGE@-@VERSION@/$$site.log)"; fi;echo; \ fi;\ done;\ - tools/compile-stats;\ + @srcdir@/tools/compile-stats;\ exit $$failed endif