X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0d21d0ee2e178c42493a22e5425d6a9d6da698d4..44f2cbefae6aa317668fb8cdf9df9a5841c71719:/Makefile.am diff --git a/Makefile.am b/Makefile.am index fd58ba8a06..2efc9d5b0b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,22 +1,48 @@ -SUBDIRS= include src tools testsuite examples doc -DISTCLEANFILES = *~ +# GRAMINE_CUT_BEGIN +SG_SUBDIRS= testsuite examples doc -ACLOCAL = aclocal-1.9 -I acmacro -AUTOMAKE_OPTIONS = gnu - -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 +# GRAMINE_CUT_END -SOURCE_FILES = $(shell find . -name "*.[ch]") -TAGS: $(SOURCE_FILES) - @etags $(SOURCE_FILES) +SUBDIRS= include src tools $(SG_SUBDIRS) +EXTRA_DIST=$(SG_EXTRA_DIST) -tags: TAGS +DISTCLEANFILES= stamp.configure stamp.build stamp.check *~ +ACLOCAL = aclocal-1.9 -I acmacro +AUTOMAKE_OPTIONS = gnu +check-local: + echo @build_id@ > stamp.check +all-local: + echo @build_id@ > stamp.build + +gramine: + rm -rf gramine-@VERSION@ gramine-@VERSION@.tar* + @echo "# Setup sources..." + for n in `find include src tools/gras -name '*.[ch]' | grep -v -e gras_config.h -e ucontext_stack.h`; 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 \ + tools/Makefile.in tools/gras/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 + chmod +x gramine-@VERSION@/configure + cp install[-.]sh config.sub config.guess depcomp missing ltmain.sh gramine-@VERSION@/$$n + 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 ##