blob: c5f5426b05f2041e5d15e14ae45ffb244d0b56f5 [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 Glass4b0730d2011-09-26 14:10:39 +000011
Andreas Bießmannf8d2c652011-12-02 11:53:13 +010012# os.c is build in the system environment, so needs standard includes
Masahiro Yamada9e414032014-02-04 17:24:24 +090013$(obj)/os.o: CFLAGS := $(filter-out -nostdinc,\
Masahiro Yamada3d83efb2013-11-26 16:13:59 +090014 $(patsubst -I%,-idirafter%,$(CFLAGS)))
Masahiro Yamada9e414032014-02-04 17:24:24 +090015$(obj)/.depend.os: CPPFLAGS := $(filter-out -nostdinc,\
Masahiro Yamada3d83efb2013-11-26 16:13:59 +090016 $(patsubst -I%,-idirafter%,$(CPPFLAGS)))