From bd57eb8c83d6969edaaf4d9ac02cfe374ace9962 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Wed, 10 Jun 2009 20:54:59 +0000 Subject: [PATCH] Added action.arch rules. --- configure/RULES.ioc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/configure/RULES.ioc b/configure/RULES.ioc index bcde7dd2e..c661d54d5 100644 --- a/configure/RULES.ioc +++ b/configure/RULES.ioc @@ -10,19 +10,19 @@ #RULES.ioc include $(CONFIG)/RULES_DIRS -build: buildInstall -install: buildInstall +build$(DIVIDER)$(ARCH) build: buildInstall +install$(DIVIDER)$(ARCH) install: buildInstall $(ARCH): buildInstall -ifneq ($(findstring $(ARCH),$(BUILD_ARCHS)),) -buildInstall: $(TARGETS) +ifeq ($(filter $(ARCH),$(BUILD_ARCHS)),$(ARCH)) +buildInstall$(DIVIDER)$(ARCH) buildInstall: $(TARGETS) -clean: +clean$(DIVIDER)$(ARCH) clean: $(RM) cdCommands envPaths dllPath.bat else -buildInstall: -clean: +buildInstall$(DIVIDER)$(ARCH) buildInstall: +clean$(DIVIDER)$(ARCH) clean: endif cdCommands envPaths dllPath.bat: $(wildcard $(TOP)/configure/RELEASE*) \