mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
a187559e3d
Correct spelling of "U-Boot" shall be used in all written text (documentation, comments in source files etc.). Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Heiko Schocher <hs@denx.de> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Minkyu Kang <mk7.kang@samsung.com>
27 lines
554 B
Makefile
27 lines
554 B
Makefile
#
|
|
# U-Boot Makefile
|
|
#
|
|
# Copyright (c) 2005-2008 Analog Devices Inc.
|
|
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += ins.o
|
|
obj-y += memcmp.o
|
|
obj-y += memcpy.o
|
|
obj-y += memmove.o
|
|
obj-y += memset.o
|
|
obj-y += outs.o
|
|
obj-$(CONFIG_CMD_KGDB) += __kgdb.o
|
|
obj-y += boot.o
|
|
obj-y += cache.o
|
|
obj-y += clocks.o
|
|
obj-$(CONFIG_CMD_CACHE_DUMP) += cmd_cache_dump.o
|
|
obj-$(CONFIG_CMD_KGDB) += kgdb.o
|
|
obj-y += muldi3.o
|
|
obj-$(CONFIG_HAS_POST) += post.o
|
|
obj-y += string.o
|
|
obj-y += sections.o
|