rename changelog tmp files that were confusingly named after svn
[build.git] / Makefile
index 8245f8f..c384080 100644 (file)
--- a/Makefile
+++ b/Makefile
 ####################
 
 # exported to spec files as plrelease
-PLANETLAB_RELEASE = 5.0
+PLANETLAB_RELEASE = 5.1
 
 #
 # Default values
@@ -177,7 +177,6 @@ config.$(1): config.$(1).svnpath
        svn export $$($(1).config.SVNPATH) config.$(1)
 endef
 
-FOO=@
 # fetching with git
 define remote_pldistro_fetch_git
 $(1).config.GITPATH := $(shell grep -v "^#" config.$(1).gitpath)
@@ -210,6 +209,7 @@ $(eval $(call remote_pldistro_fetch_$(3),$(1)))
 endef
 
 $(eval $(call remote_pldistro,wextoolbox,wextoolbox-tags,git))
+$(eval $(call remote_pldistro,wexlxc,wexlxc-tags,git))
 
 ########## stage1 and stage1iter
 # extract specs and compute .mk files by running 
@@ -389,6 +389,10 @@ $(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
+build-clean:
+       rm -rf MODULES/build
+.PHONY: build-clean
+
 tests-clean:
        rm -rf MODULES/tests
 .PHONY: tests-clean
@@ -443,7 +447,7 @@ ASSIGNS=$(foreach chunk,$(MAKEFLAGS),$(if $(findstring =,$(chunk)),$(if $(findst
 envfrompreviousrun.mk:
        @echo "# do not edit" > $@
        @$(foreach var,$(SAVED_VARS),echo "$(var):=$($(var))" >> $@ ;)
-       @$(foreach chunk,$(ASSIGNS),echo "$(chunk)" | sed -e s,=,:=, >> $@;)
+       @$(foreach chunk,$(ASSIGNS),echo "override $(chunk)" | sed -e s,=,:=, >> $@;)
        @echo "# do not edit" > aliases
        @echo -n "alias m=\"make " >> aliases
        @$(foreach var,$(SAVED_VARS),echo -n " $(var)=$($(var))" >> aliases ;)