Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Tire un bout de couverture ;)
[simgrid.git] / Makefile.am
1 SUBDIRS= include src tools examples testsuite doc
2 DISTCLEANFILES =  *~  
3
4 ACLOCAL = aclocal-1.9 -I acmacro
5 AUTOMAKE_OPTIONS = gnu
6 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
7
8 EXTRA_DIST = bootstrap COPYING INSTALL NEWS README README.IEEE TODO AUTHORS ChangeLog \
9         acmacro/aci.m4 \
10         tools/gras-check-arch   tools/compile-remote-worker.in \
11         tools/MSG_visualization tools/platform_generation \
12         tools/doxygen/index_create.pl
13
14 SOURCE_FILES = $(shell find . -name "*.[ch]")
15 TAGS: $(SOURCE_FILES)
16         @etags $(SOURCE_FILES)
17
18 tags: TAGS
19
20
21
22 if MAINTAINER_MODE
23 ##
24 ## The following is only interesting for me, I guess. 
25 ## Some of the targets will only work on my machine ;)
26 ##
27
28 release: distcheck remote debian publish
29
30 debian: dist
31         make -C ~/CVSIMPORT/pkg-grid/gras maintainerclean
32         cp @PACKAGE@-@VERSION@.tar.gz ~/CVSIMPORT/pkg-grid/gras/
33         cp @PACKAGE@-@VERSION@.tar.gz ~/CVSIMPORT/pkg-grid/gras/@PACKAGE@_@VERSION@.orig.tar.gz
34         make -C ~/CVSIMPORT/pkg-grid/gras deb check
35         dput local *.changes
36
37 publish-old: dist
38          @echo "----[ Put the documentation on the local filesystem ]----"
39          rm -rf ~/public_html/gras/doc
40          mkdir ~/public_html/gras/doc
41          cp -r doc/html ~/public_html/gras/doc
42          @echo "----[ Put the tarball @VERSION@ on the local filesystem ]----"
43          cp @PACKAGE@-@VERSION@.tar.gz ~/public_html/gras/dl
44          @echo "----[ Sync remote host ]----"
45          make -C public_html publish
46
47 publish: dist
48          @echo "----[ Put the tarball @VERSION@ on gcl ]----"
49          scp @PACKAGE@-@VERSION@.tar.gz gcl.ucsd.edu:/home/www/simgrid/dl/
50          scp -r doc/html/* gcl.ucsd.edu:/home/www/simgrid/
51          scp ChangeLog gcl.ucsd.edu:/home/www/simgrid/dl/ChangeLog
52          @echo "----[ Put the tarball @VERSION@ on the local filesystem ]----"
53          cp @PACKAGE@-@VERSION@.tar.gz ~/public_html/simgrid2
54          cp -r doc/html ~/public_html/simgrid2/doc/
55          cp ChangeLog ~/public_html/simgrid2/
56          make -C ~/public_html
57
58 mail:
59          @ver=`dpkg-parsechangelog -lChangeLog | egrep '^Version: ' | sed 's/Version: //'`;\
60           (echo "Hello," ; \
61            echo; \
62            echo "A new version of GRAS is available. Here is the changelog:";\
63            echo;echo;\
64            dpkg-parsechangelog -lChangeLog ;\
65            echo;echo; \
66            echo "It is available from the official website:";\
67            echo "  http://grail.sdsc.edu/simgrid/";\
68            echo;echo "Cheers, the SimGrid team.") | \
69           mail -e \
70                -a "From: Arnaud.Legrand@imag.fr" \
71                -s "New version of GRAS ($$ver)" \
72                simgrid2-users@listes.ens-lyon.fr
73
74 splint:
75         splint `find src -name '*.c' | grep -v RL | grep -v SG` +matchanyintegral -warnposix +boolint -Inws_portability/Include/ -Isrc/include -Isrc/base -Isrc
76
77 ##
78 ## Cruft for remote compilation
79 ##
80
81 MACHINES ?= graal.ens-lyon.fr   allo-psmn.ens-lyon.fr \
82             valnure.cs.ucsb.edu sperm.cs.ucsb.edu     basalt.cs.ucsb.edu \
83             nala.cs.utk.edu     AIX
84
85 # ACTION: What to do there
86 # possible values:
87 #  - clean:   erase any previously existing source tree and 
88 #             open the new open
89 #  - touch:   touch every file of the source tree to deal with 
90 #             clock brokenness. May help, may harm.
91 #  - config:  launch configure
92 #  - compile: run 'make'
93 #  - install: run 'make install'
94 #  - check:   run 'make check'
95 #
96 # default value:
97 ACTION ?= clean untar config compile check
98
99 REMOTE_PREFIX ?='simgrid'
100
101 remote: @PACKAGE@-@VERSION@.tar.gz tools/compile-remote-worker
102         @echo;echo "----[ Recompile the package on remote hosts ]----"
103         @test -e @srcdir@/buildlogs/@PACKAGE@-@VERSION@ || mkdir -p @srcdir@/buildlogs/@PACKAGE@-@VERSION@
104         @failed=0;\
105          for site in $(MACHINES) ; do \
106            machine=`echo $$site |sed 's/^\([^%]*\)%.*$$/\1/'`;\
107            machine2=`echo $$site |sed 's/^\([^%]*\)%\(.*\)$$/\2/'`;\
108            cmd="\"sh -c 'env REMOTE_PREFIX=$(REMOTE_PREFIX) $(REMOTE_PREFIX)/src/compile-remote-worker $(ACTION) 2>&1'\"";\
109            if echo $$site | grep  '%' >/dev/null ; then \
110              echo "----[ Compile on $$machine2 (behind $$machine) ]----";\
111            else \
112              machine=$$site;\
113              echo "----[ Compile on $$machine ]----";\
114            fi;\
115            \
116            echo "-- Copy the data over"; \
117            scp @srcdir@/@PACKAGE@-@VERSION@.tar.gz tools/compile-remote-worker \
118                $$machine:$(REMOTE_PREFIX)/src;\
119            \
120            echo "-- Compiling... (the output gets into @srcdir@/buildlogs/@PACKAGE@-@VERSION@/$$site.log)"; \
121            if echo $$site | grep  '%' >/dev/null ; then \
122              if ssh $$machine "env REMOTE_PREFIX=$(REMOTE_PREFIX) ssh -A $$machine2 $$cmd" 2>&1 > @srcdir@/buildlogs/@PACKAGE@-@VERSION@/$$site.log;\
123              then echo "Sucessful"; else failed=1;echo "Failed (check @srcdir@/buildlogs/@PACKAGE@-@VERSION@/$$site.log)"; fi;echo; \
124            else \
125              if ssh $$machine "eval $$cmd" 2>&1 > @srcdir@/buildlogs/@PACKAGE@-@VERSION@/$$site.log ;\
126              then echo "Sucessful"; else failed=1;echo "Failed (check @srcdir@/buildlogs/@PACKAGE@-@VERSION@/$$site.log)"; fi;echo; \
127            fi;\
128         done;\
129         @srcdir@/tools/compile-stats;\
130         exit $$failed
131
132 endif