From fef8faa398b1bbd3d383ac85491d0994c36b3afa Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Wed, 27 Aug 2008 14:53:14 +0000 Subject: [PATCH] Parallel make support. --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 92f29a4a..2d273c29 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,12 @@ # "#!" marks lines that can be uncommented. TOP = . include $(TOP)/configure/CONFIG -DIRS := $(DIRS) $(filter-out $(DIRS), configure) -DIRS := $(DIRS) $(filter-out $(DIRS), motorApp) -#!DIRS := $(DIRS) $(filter-out $(DIRS), motorExApp) -#!DIRS := $(DIRS) $(filter-out $(DIRS), iocBoot) + +DIRS += configure motorApp +motorApp_DEPEND_DIRS = configure + +#!DIRS += motorExApp iocBoot +#!motorExApp_DEPEND_DIRS = motorApp +#!iocBoot_DEPEND_DIRS = motorExApp + include $(TOP)/configure/RULES_TOP