blob: 06e895df905d907063c0754c27a37214f7d31b25 (
plain) (
tree)
|
|
ifeq ($(OVERRIDE_TARGET),)
ifeq ($(TARGET),)
TARGET := $(shell $(ERL_TOP)/erts/autoconf/config.guess)
else
endif
else
ifneq ($(TARGET),)
ifneq ($(TARGET), $(OVERRIDE_TARGET))
$(warning overriding $$(TARGET) = \
"$(TARGET)" \
with \
$$(OVERRIDE_TARGET) = \
"$(OVERRIDE_TARGET)")
else
endif
override TARGET := $(OVERRIDE_TARGET)
else
TARGET := $(OVERRIDE_TARGET)
endif
endif
|