From: mquinson Date: Fri, 17 Mar 2006 19:57:16 +0000 (+0000) Subject: Complete the compilation infrastructure wrt the last directory addition X-Git-Tag: v3.3~3408 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/38d875d4d634387a63fbe9550111a0a0dec7f3d2 Complete the compilation infrastructure wrt the last directory addition git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1950 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/configure.ac b/configure.ac index c1299b0547..9ceaa7f733 100644 --- a/configure.ac +++ b/configure.ac @@ -257,6 +257,7 @@ AC_CONFIG_FILES([ examples/gras/tokenS/Makefile examples/gras/tokenS/test_sg examples/gras/tokenS/test_rl examples/gras/mmrpc/Makefile examples/gras/mmrpc/test_sg examples/gras/mmrpc/test_rl + examples/gras/p2p/Makefile examples/gras/p2p/chord/Makefile examples/gras/p2p/chord/test_sg examples/gras/p2p/chord/test_rl examples/amok/Makefile diff --git a/examples/gras/Makefile.am b/examples/gras/Makefile.am index 20598c2456..2666d7c006 100644 --- a/examples/gras/Makefile.am +++ b/examples/gras/Makefile.am @@ -1,3 +1,3 @@ -SUBDIRS= ping timer chrono tokenS mmrpc +SUBDIRS= ping timer chrono tokenS mmrpc p2p include $(top_srcdir)/acmacro/dist-files.mk diff --git a/examples/gras/p2p/.cvsignore b/examples/gras/p2p/.cvsignore new file mode 100644 index 0000000000..6179e0dbd5 --- /dev/null +++ b/examples/gras/p2p/.cvsignore @@ -0,0 +1 @@ +Makefile Makefile.in diff --git a/examples/gras/p2p/Makefile.am b/examples/gras/p2p/Makefile.am new file mode 100644 index 0000000000..cefdc275a4 --- /dev/null +++ b/examples/gras/p2p/Makefile.am @@ -0,0 +1,3 @@ +SUBDIRS= chord + +include $(top_srcdir)/acmacro/dist-files.mk