mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
a79854a90f
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Albert ARIBAUD <albert.u.boot@aribaud.net> Cc: Andreas Bießmann <andreas.devel@googlemail.com> Cc: Stefano Babic <sbabic@denx.de> Cc: Prafulla Wadaskar <prafulla@marvell.com> Cc: Minkyu Kang <mk7.kang@samsung.com> Cc: Vipin Kumar <vipin.kumar@st.com> Cc: Tom Warren <twarren@nvidia.com> Cc: Tom Rini <trini@ti.com>
25 lines
474 B
Makefile
25 lines
474 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# (C) Copyright 2013 Siemens Schweiz AG
|
|
# (C) Heiko Schocher, DENX Software Engineering, hs@denx.de.
|
|
#
|
|
# Based on:
|
|
# u-boot:/board/ti/am335x/Makefile
|
|
# Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifneq ($(OBJTREE),$(SRCTREE))
|
|
$(shell mkdir -p $(obj)../common)
|
|
endif
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y := mux.o
|
|
endif
|
|
|
|
obj-y += board.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-y += ../common/factoryset.o
|
|
endif
|