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