From: <den...@us...> - 2009-12-30 14:34:37
|
Revision: 38 http://dsim.svn.sourceforge.net/dsim/?rev=38&view=rev Author: denis_arnaud Date: 2009-12-30 14:34:30 +0000 (Wed, 30 Dec 2009) Log Message: ----------- [Test] Added missing dependencies for the delivery (as a tar-ball) of tests. Modified Paths: -------------- trunk/dsim/test/boost/Makefile.am trunk/dsim/test/boost/mpi/Makefile.am Modified: trunk/dsim/test/boost/Makefile.am =================================================================== --- trunk/dsim/test/boost/Makefile.am 2009-12-30 14:25:05 UTC (rev 37) +++ trunk/dsim/test/boost/Makefile.am 2009-12-30 14:34:30 UTC (rev 38) @@ -1,9 +1,10 @@ ## test/boost sub-directory include $(top_srcdir)/Makefile.common +# +MAINTAINERCLEANFILES = Makefile.in + ## SUBDIRS = accumulators asio mpi mpl serialization signals spirit -MAINTAINERCLEANFILES = Makefile.in - EXTRA_DIST = Modified: trunk/dsim/test/boost/mpi/Makefile.am =================================================================== --- trunk/dsim/test/boost/mpi/Makefile.am 2009-12-30 14:25:05 UTC (rev 37) +++ trunk/dsim/test/boost/mpi/Makefile.am 2009-12-30 14:34:30 UTC (rev 38) @@ -1,17 +1,26 @@ -## test/mpi sub-directory +## test/boost/mpi sub-directory include $(top_srcdir)/Makefile.common MAINTAINERCLEANFILES = Makefile.in +# +SUBDIRS = + +EXTRA_DIST = pympi.py + +# check_PROGRAMS = mpi_c mpi mpi_p2p + # mpi_c must be compiled with mpic++ # Note: mpic++/mpiCC is a wrapper around the MPI C++ compiler, and knows # where MPI is installed. So, there is no need to specify any other # CFLAGS or LDFLAGS at that stage. -mpi_c: mpi_c.cpp +mpi_c_SOURCES = mpi_c.cpp +mpi_c: $(mpi_c_SOURCES) mpic++ -o $@ $< +# mpi_SOURCES = mpi.cpp mpi_CXXFLAGS = $(BOOST_CFLAGS) $(MPICH2_CFLAGS) mpi_LDFLAGS = $(BOOST_LIBS) $(BOOST_MPI_LIB) @@ -22,4 +31,3 @@ mpi_p2p_LDFLAGS = $(BOOST_LIBS) $(BOOST_MPI_LIB) mpi_p2p_LDADD = -EXTRA_DIST = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |