[make] rename module.mk to recurse.mk to make way for a real module.mk

This commit is contained in:
Travis Geiselbrecht
2012-08-06 17:29:57 -07:00
parent 8cb6fbedc2
commit 9c0f307ce6
2 changed files with 2 additions and 2 deletions

View File

@@ -1,21 +0,0 @@
# included from the main makefile to include a set of rules.mk to satisfy
# the current MODULE list. If as a byproduct of including the rules.mk
# more stuff shows up on the MODULE list, recurse
# sort and filter out any modules that have already been included
MODULES := $(sort $(MODULES))
MODULES := $(filter-out $(ALLMODULES),$(MODULES))
ifneq ($(MODULES),)
ALLMODULES += $(MODULES)
ALLMODULES := $(sort $(ALLMODULES))
INCMODULES := $(MODULES)
MODULES :=
$(info including $(INCMODULES))
include $(addsuffix /rules.mk,$(INCMODULES))
include make/module.mk
endif