4000: Makefile.am: Fix invalid rule name.

--- ChangeLog | 4 ++++ Makefile.am | 8 +++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8c13919..bf482e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2009-06-05 Guillaume Lazzara <lazzara@lrde.epita.fr> + * Makefile.am: fix invalid rule name. + +2009-06-05 Guillaume Lazzara <lazzara@lrde.epita.fr> + * configure.ac: Configure milena/tests/io/p*ms directories. 2009-06-04 Fabien Freling <fabien.freling@lrde.epita.fr> diff --git a/Makefile.am b/Makefile.am index 4df773e..9b222b6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,11 +8,13 @@ if ENABLE_SWILENA SUBDIRS += swilena endif ENABLE_SWILENA +.PHONY: doc pretty-check + # Shortcut to generate the documentation from the top level. -.PHONY: doc doc: cd milena && $(MAKE) $(AM_MAKEFLAGS) $@ -pretty_check: - $(MAKE) -C milena/tests pretty_check +# Shortcut to launch the pretty check from the top level. +pretty-check: + cd milena/tests && $(MAKE) $(AM_MAKEFLAGS) $@ -- 1.5.6.5
participants (1)
-
Guillaume Lazzara