configure: Added 'host' make target.

Builds only the current host architecture, so this is
equivalent to the target install.$EPISC_HOST_ARCH
This commit is contained in:
Andrew Johnson
2013-11-22 11:44:42 -06:00
parent b38e48642e
commit aab841e279
5 changed files with 21 additions and 6 deletions

View File

@@ -137,6 +137,12 @@ cleanArchTargets = $(foreach arch,$(BUILD_ARCHS), clean$(DIVIDER)$(arch))
-include $(TOP)/configure/CONFIG_APP_INCLUDE
all: install
ifeq ($(EPICS_HOST_ARCH),$T_A)
host: install
else
# Do nothing
host:
endif
install: buildInstall
@@ -144,7 +150,7 @@ buildInstall : build
rebuild: clean install
.PHONY: all $(ACTIONS)
.PHONY: all host $(ACTIONS)
$(actionArchTargets) $(BUILD_ARCHS): install
$(cleanArchTargets): clean