* Makefile.am (tests): New phony target.
* tests/world/Makefile.am: Include milena/tests/tests.mk.
---
milena/ChangeLog | 7 +++++++
milena/Makefile.am | 5 ++++-
milena/tests/world/Makefile.am | 4 ++++
3 files changed, 15 insertions(+), 1 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index cf6a1fc..fd93be6 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,5 +1,12 @@
2009-06-10 Roland Levillain <roland(a)lrde.epita.fr>
+ Complete the installation of the Make rule `tests' in Milena.
+
+ * Makefile.am (tests): New phony target.
+ * tests/world/Makefile.am: Include milena/tests/tests.mk.
+
+2009-06-10 Roland Levillain <roland(a)lrde.epita.fr>
+
Set missing flags in Makefiles.
* tests/Makefile.am (all_headers_CPPFLAGS, all_headers_LDFLAGS)
diff --git a/milena/Makefile.am b/milena/Makefile.am
index 6d33714..a1db868 100644
--- a/milena/Makefile.am
+++ b/milena/Makefile.am
@@ -30,7 +30,7 @@ if ENABLE_TOOLS
SUBDIRS += tools
endif ENABLE_TOOLS
-.PHONY: doc tutorial pretty-check
+.PHONY: doc tutorial pretty-check tests
doc:
cd doc && $(MAKE) $(AM_MAKEFLAGS) $@
@@ -42,6 +42,9 @@ tutorial:
pretty-check:
cd tests && $(MAKE) $(AM_MAKEFLAGS) $@
+tests:
+ cd tests && $(MAKE) $(AM_MAKEFLAGS) $@
+
# Regen files recursively.
include $(top_srcdir)/build-aux/regen-recursive.mk
REGEN_SUBDIRS += doc tests
diff --git a/milena/tests/world/Makefile.am b/milena/tests/world/Makefile.am
index d370f91..41a8cba 100644
--- a/milena/tests/world/Makefile.am
+++ b/milena/tests/world/Makefile.am
@@ -15,6 +15,10 @@
# along with Olena. If not, see <http://www.gnu.org/licenses/>.
#
+## Process this file through Automake to create Makefile.in.
+
+include $(top_srcdir)/milena/tests/tests.mk
+
SUBDIRS = \
binary_2d \
inter_pixel
--
1.6.1.2