mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-07 02:21:28 +01:00
Initial ground work in preperation for generic board initialization code for the SPARC architecture. Signed-off-by: Francois Retief <fgretief@spaceteq.co.za>
14 lines
252 B
Makefile
14 lines
252 B
Makefile
#
|
|
# (C) Copyright 2000-2015
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y = cache.o interrupts.o time.o
|
|
obj-$(CONFIG_CMD_BOOTM) += bootm.o
|
|
|
|
ifndef CONFIG_SYS_GENERIC_BOARD
|
|
obj-y += board.o
|
|
endif
|