mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
5b8e76c35e
There was for long time no activity in the 8xx area. We need to go further and convert to Kconfig, but it turned out, nobody is interested anymore in 8xx, so remove it (with a heavy heart, knowing that I remove here the root of U-Boot). Signed-off-by: Heiko Schocher <hs@denx.de>
17 lines
379 B
Makefile
17 lines
379 B
Makefile
#
|
|
# (C) Copyright 2002-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += post.o
|
|
obj-$(CONFIG_POST_STD_LIST) += tests.o
|
|
|
|
obj-y += drivers/
|
|
obj-$(CONFIG_PPC) += lib_powerpc/
|
|
obj-$(CONFIG_MPC83xx) += cpu/mpc83xx/
|
|
obj-$(CONFIG_4xx) += cpu/ppc4xx/
|
|
ifneq ($(filter lwmon5 pdm360ng,$(BOARD)),)
|
|
obj-y += board/$(BOARD)/
|
|
endif
|