From c15d2d589ccde393a83a529afb1280f498740f52 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Fri, 24 Sep 2004 20:55:03 +0000 Subject: [PATCH] Create cdCommands and envPaths files only for BUILD_ARCH dirs. --- configure/RULES.ioc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/configure/RULES.ioc b/configure/RULES.ioc index 2a80190cf..e868b02d9 100644 --- a/configure/RULES.ioc +++ b/configure/RULES.ioc @@ -13,8 +13,17 @@ include $(CONFIG)/RULES_DIRS build: buildInstall install: buildInstall +ifneq ($(findstring $(ARCH),$(BUILD_ARCHS)),) buildInstall: $(TARGETS) +clean: + $(RM) cdCommands envPaths + +else +buildInstall: +clean: +endif + envPaths cdCommands: $(wildcard $(TOP)/configure/RELEASE*) \ $(TOP)/configure/CONFIG $(INSTALL_BIN) @$(RM) $@ @@ -24,6 +33,6 @@ else $(PERL) $(TOOLS)/convertRelease.pl -a $(ARCH) -t $(IOCS_APPL_TOP) $@ endif -realclean clean: +realclean: $(RM) cdCommands envPaths