blob: 7d4410c42a20a6760babfdf28308a3069cd36fec [file] [log] [blame]
Simon Glass4b0730d2011-09-26 14:10:39 +00001#
2# Copyright (c) 2011 The Chromium OS Authors.
3#
4# (C) Copyright 2000-2003
5# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6#
Wolfgang Denk1a459662013-07-08 09:37:19 +02007# SPDX-License-Identifier: GPL-2.0+
Simon Glass4b0730d2011-09-26 14:10:39 +00008#
9
Masahiro Yamada7cf40822013-10-17 17:35:03 +090010obj-y := cpu.o os.o start.o state.o
Simon Glassbbc09bf2014-02-27 13:26:17 -070011obj-$(CONFIG_SANDBOX_SDL) += sdl.o
Simon Glass4b0730d2011-09-26 14:10:39 +000012
Andreas Bießmannf8d2c652011-12-02 11:53:13 +010013# os.c is build in the system environment, so needs standard includes
Masahiro Yamada6825a952014-02-04 17:24:28 +090014# CFLAGS_REMOVE_os.o cannot be used to drop header include path
15quiet_cmd_cc_os.o = CC $(quiet_modtag) $@
16cmd_cc_os.o = $(CC) $(filter-out -nostdinc, \
17 $(patsubst -I%,-idirafter%,$(c_flags))) -c -o $@ $<
18
19$(obj)/os.o: $(src)/os.c FORCE
20 $(call if_changed_dep,cc_os.o)
Simon Glassbbc09bf2014-02-27 13:26:17 -070021$(obj)/sdl.o: $(src)/sdl.c FORCE
22 $(call if_changed_dep,cc_os.o)