X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e7982e0a33b824aad32c50f35170a246fa6f0a40..1043fd98ae0e20cb5d05d264a08903f3e059f27b:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 1ce33504af..adfe059f0e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,22 +1,20 @@ -SUBDIRS= include src tools testsuite examples doc -DISTCLEANFILES = *~ - -ACLOCAL = aclocal-1.9 -I acmacro -AUTOMAKE_OPTIONS = gnu +# GRAMINE_CUT_BEGIN +SG_SUBDIRS= tools testsuite examples doc -EXTRA_DIST = bootstrap COPYING INSTALL NEWS README README.IEEE TODO AUTHORS ChangeLog \ +SG_EXTRA_DIST = bootstrap COPYING INSTALL NEWS README README.IEEE TODO AUTHORS ChangeLog \ acmacro/aci.m4 \ tools/graspe-slave.in \ tools/MSG_visualization \ - tools/MSG_visualization/colorize.pl \ - tools/platform_generation \ - tools/platform_generation/WAN_3.tiers \ - tools/platform_generation/tiers_simgrid.pl \ - tools/platform_generation/AlvinMisc.pm \ - tools/platform_generation/graph_tbx.pm \ - tools/platform_generation/graph_viz.pm \ - tools/platform_generation/tiers.pm \ - tools/platform_generation/msgplatform2surfxml.pl \ + tools/MSG_visualization/colorize.pl +# GRAMINE_CUT_END + +SUBDIRS= include src $(SG_SUBDIRS) +EXTRA_DIST=$(SG_EXTRA_DIST) + +DISTCLEANFILES = *~ + +ACLOCAL = aclocal-1.9 -I acmacro +AUTOMAKE_OPTIONS = gnu SOURCE_FILES = $(shell find . -name "*.[ch]") TAGS: $(SOURCE_FILES) @@ -24,7 +22,27 @@ TAGS: $(SOURCE_FILES) tags: TAGS - +gramine: + rm -rf gramine-@VERSION@ + @echo "# Setup sources..." + for n in `find include src -name '*.[chl]'`; do \ + mkdir -p gramine-@VERSION@/`dirname $$n`; \ + perl -e '$$/ = undef; $$l=<>; while ($$l=~ m,(/\*.*?\*/),s) { $$rep=$$1; $$rep=~s/\S//sg; $$l=~s,/\*.*?\*/,$$rep,s; } print $$l;' < $$n > gramine-@VERSION@/$$n; \ + done + @echo "# Copy sources to be generated by configury" + cp src/ucontext_stack.h.in src/gras_config.h.in gramine-@VERSION@/src + @echo "# Remove sources being part of the testsuite" + rm gramine-@VERSION@/src/*_unit.c + @echo "# Adapt the configury mechanism to the gramine context" + mkdir gramine-@VERSION@/acmacro + for n in configure Makefile.in src/Makefile.in include/Makefile.in ; do \ + sed -e '/^# GRAMINE_CUT_BEGIN/,/^# GRAMINE_CUT_END/d' \ + -e 's/gramine_mode=no/gramine_mode=yes/' $$n > gramine-@VERSION@/$$n; \ + done + cp install[-.]sh config.sub config.guess depcomp missing ltmain.sh gramine-@VERSION@/ + chmod +x gramine-@VERSION@/configure + tar cf gramine-@VERSION@.tar gramine-@VERSION@ ; bzip2 -9 gramine-@VERSION@.tar + tar cf gramine-@VERSION@.tar gramine-@VERSION@ ; gzip -9 gramine-@VERSION@.tar if MAINTAINER_MODE ##