X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/53f20f2c2ee5abf90c81cbd7463b152b59b1677f..7c1fe6e308f9714c1077dd4c41589560165fd1e1:/Makefile.am?ds=sidebyside diff --git a/Makefile.am b/Makefile.am index d1b21edbb3..35d20da810 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,18 +16,17 @@ DISTCLEANFILES = *~ ACLOCAL = aclocal-1.9 -I acmacro AUTOMAKE_OPTIONS = gnu -SOURCE_FILES = $(shell find . -name "*.[ch]") -TAGS: $(SOURCE_FILES) - @etags $(SOURCE_FILES) - -tags: TAGS +check-local: + echo @build_id@ > stamp.check +all-local: + echo @build_id@ > stamp.build gramine: - rm -rf gramine-@VERSION@ + rm -rf gramine-@VERSION@ gramine-@VERSION@.tar* @echo "# Setup sources..." - for n in `find include src -name '*.[chl]'`; do \ + for n in `find include src -name '*.[ch]'`; do \ mkdir -p gramine-@VERSION@/`dirname $$n`; \ - cp $$n 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 @@ -39,9 +38,10 @@ gramine: 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 cfz gramine-@VERSION@.tar.gz gramine-@VERSION@/ + 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 ##