From 7f165d4f8e02a889a3cdd1036b6c85283da20cbe Mon Sep 17 00:00:00 2001 From: Raphael Coeffic Date: Tue, 30 Mar 2010 22:38:35 +0000 Subject: [PATCH] - fixes exclude_modules. git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1732 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- apps/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/Makefile b/apps/Makefile index 394d6520..8706aa51 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -1,14 +1,14 @@ COREPATH ?= ../core .DEFAULT_GOAL := all +include $(COREPATH)/../Makefile.defs + ifneq ($(USE_MONITORING), yes) -exclude_modules ?= mp3 examples py_sems xmlrpc2di gateway monitoring +override exclude_modules = mp3 examples py_sems xmlrpc2di gateway monitoring else -exclude_modules ?= mp3 examples py_sems xmlrpc2di gateway +override exclude_modules = mp3 examples py_sems xmlrpc2di gateway endif -include $(COREPATH)/../Makefile.defs - modules ?= $(filter-out $(subst ;, ,$(exclude_modules))\ $(wildcard Makefile*) CVS CMakeLists.txt, \ $(wildcard *) examples/tutorial/cc_acc )