
From: levill_r <levill_r@4aad255d-cdde-0310-9447-f3009e2ae8c0> * test/Makefile.am (repository_clean): Rename target as... (clean-repository): ...this. Make it phony. Do not fail on `rm' errors. No longer depend on clean. (clean-local): New target. Depend on clean-repository. git-svn-id: https://svn.lrde.epita.fr/svn/oln/trunk@4668 4aad255d-cdde-0310-9447-f3009e2ae8c0 --- dynamic-use-of-static-c++/ChangeLog | 12 ++++++++++++ dynamic-use-of-static-c++/test/Makefile.am | 6 ++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/dynamic-use-of-static-c++/ChangeLog b/dynamic-use-of-static-c++/ChangeLog index 0dbd74e..5b9e6e1 100644 --- a/dynamic-use-of-static-c++/ChangeLog +++ b/dynamic-use-of-static-c++/ChangeLog @@ -1,3 +1,15 @@ +2009-10-26 Roland Levillain <roland@lrde.epita.fr> + + Clean the test repository during general cleaning. + + * test/Makefile.am (repository_clean): Rename target as... + (clean-repository): ...this. + Make it phony. + Do not fail on `rm' errors. + No longer depend on clean. + (clean-local): New target. + Depend on clean-repository. + 2009-10-22 Roland Levillain <roland@lrde.epita.fr> Include a missing system header in libmd5. diff --git a/dynamic-use-of-static-c++/test/Makefile.am b/dynamic-use-of-static-c++/test/Makefile.am index 68f3b34..5a6beea 100644 --- a/dynamic-use-of-static-c++/test/Makefile.am +++ b/dynamic-use-of-static-c++/test/Makefile.am @@ -56,5 +56,7 @@ TESTS = $(check_PROGRAMS) tests: $(check_PROGRAMS) -repository_clean: clean - rm -rf repository +clean-local: clean-repository +.PHONY: clean-repository +clean-repository: + -rm -rf repository -- 1.6.5