mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
40e9ede1dc
At present sandbox has a start.o in the 'start' target but also includes it in the normal target list. This is not how this is normally handled. It is needed because sandbox does not include the u-boot-init variable in its link rule. Update the rule and move start.o from the normal target list to the 'extras' list. Signed-off-by: Simon Glass <sjg@chromium.org>
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2011 The Chromium OS Authors.
|
|
#
|
|
# (C) Copyright 2000-2003
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
obj-y := cpu.o state.o
|
|
extra-y := start.o os.o
|
|
extra-$(CONFIG_SANDBOX_SDL) += sdl.o
|
|
obj-$(CONFIG_SPL_BUILD) += spl.o
|
|
obj-$(CONFIG_ETH_SANDBOX_RAW) += eth-raw-os.o
|
|
|
|
# os.c is build in the system environment, so needs standard includes
|
|
# CFLAGS_REMOVE_os.o cannot be used to drop header include path
|
|
quiet_cmd_cc_os.o = CC $(quiet_modtag) $@
|
|
cmd_cc_os.o = $(CC) $(filter-out -nostdinc, \
|
|
$(patsubst -I%,-idirafter%,$(c_flags))) -c -o $@ $<
|
|
|
|
$(obj)/os.o: $(src)/os.c FORCE
|
|
$(call if_changed_dep,cc_os.o)
|
|
$(obj)/sdl.o: $(src)/sdl.c FORCE
|
|
$(call if_changed_dep,cc_os.o)
|
|
|
|
# eth-raw-os.c is built in the system env, so needs standard includes
|
|
# CFLAGS_REMOVE_eth-raw-os.o cannot be used to drop header include path
|
|
quiet_cmd_cc_eth-raw-os.o = CC $(quiet_modtag) $@
|
|
cmd_cc_eth-raw-os.o = $(CC) $(filter-out -nostdinc, \
|
|
$(patsubst -I%,-idirafter%,$(c_flags))) -c -o $@ $<
|
|
|
|
$(obj)/eth-raw-os.o: $(src)/eth-raw-os.c FORCE
|
|
$(call if_changed_dep,cc_eth-raw-os.o)
|