X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f1181eecb82ca64cfa49259fe41a7115fdcf6bc0..29af76860c8d693917872c2a0ed3d2a4c7a0388f:/examples/smpi/Makefile.am diff --git a/examples/smpi/Makefile.am b/examples/smpi/Makefile.am index 0e55db25e9..10a3697333 100644 --- a/examples/smpi/Makefile.am +++ b/examples/smpi/Makefile.am @@ -14,7 +14,14 @@ # /tools/tesh/README.tesh # - List the tesh file in the TESTS variable so that it gets tested on make check -noinst_PROGRAMS = allreduce bcast bcbench compute compute2 compute3 first second mvmul ring_c split scatter reduce sendrecv +noinst_PROGRAMS = allreduce bcast bcbench compute compute2 compute3 first pingpong second sendrecv mvmul ring_c split scatter reduce + +alltoall2: alltoall2.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ +alltoall_basic: alltoall_basic.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ +alltoallv: alltoallv.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ allreduce: allreduce.c $(top_builddir)/src/smpi/smpicc $^ -o $@ bcast: bcast.c @@ -29,6 +36,8 @@ compute3: compute3.c $(top_builddir)/src/smpi/smpicc $^ -o $@ first: mvmul.c $(top_builddir)/src/smpi/smpicc $^ -o $@ +pingpong: pingpong.c + $(top_builddir)/src/smpi/smpicc $^ -o $@ second: second.c $(top_builddir)/src/smpi/smpicc $^ -o $@ scatter: scatter.c @@ -49,7 +58,7 @@ TESTS = bcast.tesh reduce.tesh # No need to change anything after that line TESTS_ENVIRONMENT = $(top_builddir)/tools/tesh/tesh -EXTRA_DIST = $(TESTS) +EXTRA_DIST = $(TESTS) hostfile CLEANFILES = *~ include $(top_srcdir)/acmacro/dist-files.mk