Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
89143ad1c1e2dfec6213c88233f591c3ae6a686e
[simgrid.git] / examples / smpi / Makefile.am
1 # Copyright (c) 2004-2009. The SimGrid team. All right reserved.
2
3 # This file is part of the SimGrid project. This is free software:
4 # You can redistribute and/or modify it under the terms of the
5 # GNU LGPL (v2.1) licence.
6
7
8 # HOW TO ADD A NEW EXAMPLE:
9 #
10 #  - add the binary name into the noinst_PROGRAMS variable
11 #  - add a rule to compile the program, inspired from the existing ones
12 #  - add a tesh file running it in several conditions. 
13 #    Write the file taking the others as example, and after reading
14 #    <simgrid>/tools/tesh/README.tesh
15 #  - List the tesh file in the TESTS variable so that it gets tested on make check
16
17 noinst_PROGRAMS = allreduce bcast bcbench compute compute2 compute3 first second mvmul ring_c split scatter reduce 
18
19 allreduce: allreduce.c
20         $(top_builddir)/src/smpi/smpicc $^ -o $@
21 bcast: bcast.c
22         $(top_builddir)/src/smpi/smpicc $^ -o $@
23 bcbench: bcbench.c
24         $(top_builddir)/src/smpi/smpicc $^ -o $@
25 compute: compute.c
26         $(top_builddir)/src/smpi/smpicc $^ -o $@
27 compute2: compute2.c
28         $(top_builddir)/src/smpi/smpicc $^ -o $@
29 compute3: compute3.c
30         $(top_builddir)/src/smpi/smpicc $^ -o $@
31 first: mvmul.c
32         $(top_builddir)/src/smpi/smpicc $^ -o $@
33 second: second.c
34         $(top_builddir)/src/smpi/smpicc $^ -o $@
35 scatter: scatter.c
36         $(top_builddir)/src/smpi/smpicc $^ -o $@
37 reduce: reduce.c
38         $(top_builddir)/src/smpi/smpicc $^ -o $@
39 ring_c: ring_c.c
40         $(top_builddir)/src/smpi/smpicc $^ -o $@
41 split: split.c
42         $(top_builddir)/src/smpi/smpicc $^ -o $@
43 mvmul: mvmul.c
44         $(top_builddir)/src/smpi/smpicc $^ -o $@
45
46 # List the tesh files below
47 TESTS = bcast.tesh reduce.tesh
48
49 # No need to change anything after that line
50 TESTS_ENVIRONMENT = $(top_builddir)/tools/tesh/tesh
51 EXTRA_DIST = $(TESTS)
52 CLEANFILES = *~
53
54 include $(top_srcdir)/acmacro/dist-files.mk