From e78e485fb3fe3e46870d874ed9bc78764b930fdd Mon Sep 17 00:00:00 2001 From: Christophe CURIS Date: Tue, 30 Dec 2014 19:10:22 +0100 Subject: [PATCH] make: do not compile stuff in the 'test' directory To be consistent with the rest of the project's behaviour, do not try to compile what is in the toplevel's "test" directory for a normal compilation. The content of this directory does not really test anything, so it is not useful for users, and there is always the risk that it could break compilation because it is not heavily maintained (and does not deserves to) so this patch just skips the directory, as already done for wrlib/tests/ and WINGs/Tests. Signed-off-by: Christophe CURIS --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 34038cb7..ddbb0c90 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,7 +30,8 @@ config-paths.h: Makefile ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = wrlib WINGs src util po WindowMaker wmlib WPrefs.app doc test +SUBDIRS = wrlib WINGs src util po WindowMaker wmlib WPrefs.app doc +DIST_SUBDIRS = $(SUBDIRS) test EXTRA_DIST = TODO BUGS BUGFORM FAQ FAQ.I18N INSTALL \ INSTALL-WMAKER README.definable-cursor \