mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 01:44:34 +00:00

It is confusing to have both "$(PHASE_)" and "$(XPL_)" be used in our Makefiles as part of the macros to determine when to do something in our Makefiles based on what phase of the build we are in. For consistency, bring this down to a single macro and use "$(PHASE_)" only. Signed-off-by: Tom Rini <trini@konsulko.com>
13 lines
333 B
Makefile
13 lines
333 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
obj-$(CONFIG_AUTOBOOT) += test_autoboot.o
|
|
|
|
ifneq ($(CONFIG_$(PHASE_)BLOBLIST),)
|
|
ifdef CONFIG_BLOBLIST_FIXED
|
|
obj-$(CONFIG_$(PHASE_)CMDLINE) += bloblist.o
|
|
endif
|
|
endif
|
|
|
|
obj-$(CONFIG_CYCLIC) += cyclic.o
|
|
obj-$(CONFIG_EVENT_DYNAMIC) += event.o
|
|
obj-y += cread.o
|
|
obj-$(CONFIG_$(PHASE_)CMDLINE) += print.o
|