From ed3f21b0135794cbfd4a3460e685d2f38e7f1511 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 5 Nov 2010 19:46:53 +0200 Subject: [PATCH] Create and remove the test/{log,tmp} dirs when appropriate. --- test/Makefile.am | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/Makefile.am b/test/Makefile.am index d955be8a..9f7e8254 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -6,3 +6,9 @@ EXTRA_DIST = completion \ fixtures \ lib \ unit + +all: + $(mkdir_p) log tmp + +distclean-local: + rm -rf log tmp