consider build and tests as part of ALL.modules, event though this is not explicit
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Sun, 23 May 2010 15:08:47 +0000 (17:08 +0200)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Sun, 23 May 2010 15:08:47 +0000 (17:08 +0200)
Makefile

index a567b59..6ba9603 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -276,7 +276,7 @@ $(foreach package, $(ALL), $(eval $(call stage1_package_vars,$(package))))
 # compute all modules
 ALL.modules :=
 $(foreach package,$(ALL), $(eval ALL.modules+=$($(package)-MODULES)))
-ALL.modules:=$(sort $(ALL.modules))
+ALL.modules:=build tests $(sort $(ALL.modules))
 
 # extract revision from -SVNPATH or tag from -GITPATH
 define stage1_module_vars
@@ -364,8 +364,6 @@ $(foreach module,$(ALL.modules),$(eval $(call target_extract_module,$(module))))
 
 ### the tests area
 # use this makefile to extract tests rather than extracting manually in vbuild-nightly
-$(eval $(call stage1_module_vars,tests))
-$(eval $(call target_extract_module,tests))
 tests-clean:
        rm -rf MODULES/tests
 .PHONY: tests-clean