|
|
|
#
|
|
|
|
# Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
#
|
|
|
|
# (C) Copyright 2000-2003
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#
|
|
|
|
|
|
|
|
obj-y := cpu.o os.o start.o state.o
|
|
|
|
obj-$(CONFIG_SANDBOX_SDL) += sdl.o
|
|
|
|
|
|
|
|
# os.c is build in the system environment, so needs standard includes
|
kbuild: use Linux Kernel build scripts
Now we are ready to switch over to real Kbuild.
This commit disables temporary scripts:
scripts/{Makefile.build.tmp, Makefile.host.tmp}
and enables real Kbuild scripts:
scripts/{Makefile.build,Makefile.host,Makefile.lib}.
This switch is triggered by the line in scripts/Kbuild.include
-build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build.tmp obj
+build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj
We need to adjust some build scripts for U-Boot.
But smaller amount of modification is preferable.
Additionally, we need to fix compiler flags which are
locally added or removed.
In Kbuild, it is not allowed to change CFLAGS locally.
Instead, ccflags-y, asflags-y, cppflags-y,
CFLAGS_$(basetarget).o, CFLAGS_REMOVE_$(basetarget).o
are prepared for that purpose.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Tested-by: Gerhard Sittig <gsi@denx.de>
11 years ago
|
|
|
# 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)
|