Changes for GNU make -j option (multiple jobs).

This commit is contained in:
Janet B. Anderson
2007-10-24 21:21:54 +00:00
parent e659918bcf
commit 9d2b8ece7b
13 changed files with 100 additions and 10 deletions

View File

@@ -6,4 +6,10 @@ DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *App))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard *app))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocBoot))
DIRS := $(DIRS) $(filter-out $(DIRS), $(wildcard iocboot))
define DIR_template
$(1)_DEPEND_DIRS = configure
endef
$(foreach dir, $(filter-out configure,$(DIRS)),$(eval $(call DIR_template,$(dir))))
include $(TOP)/configure/RULES_TOP