blob: 07afb350c2ba596dd20a49b36d8fe165e22e986d [file] [log] [blame]
wdenke2211742002-11-02 23:30:20 +00001#
Wolfgang Denk1234ce72013-06-21 10:22:36 +02002# (C) Copyright 2000-2013
wdenke2211742002-11-02 23:30:20 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denk1234ce72013-06-21 10:22:36 +02005# SPDX-License-Identifier: GPL-2.0+
wdenke2211742002-11-02 23:30:20 +00006#
wdenke2211742002-11-02 23:30:20 +00007#########################################################################
8
Benoît Thébaudeau8149ac92013-04-11 09:35:54 +00009# Set shell to bash if possible, otherwise fall back to sh
10SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
11 else if [ -x /bin/bash ]; then echo /bin/bash; \
12 else echo sh; fi; fi)
13
14export SHELL
15
Marian Balakowiczd62379d2006-09-01 19:49:50 +020016ifeq ($(CURDIR),$(SRCTREE))
Wolfgang Denk4df0da52006-10-09 00:42:01 +020017dir :=
Marian Balakowiczd62379d2006-09-01 19:49:50 +020018else
19dir := $(subst $(SRCTREE)/,,$(CURDIR))
20endif
21
Daniel Schwierzecka180922a2011-07-18 06:09:15 +000022ifneq ($(OBJTREE),$(SRCTREE))
23# Create object files for SPL in a separate directory
24ifeq ($(CONFIG_SPL_BUILD),y)
Ying Zhang2d2e3b62013-08-16 15:16:15 +080025ifeq ($(CONFIG_TPL_BUILD),y)
26obj := $(if $(dir),$(TPLTREE)/$(dir)/,$(TPLTREE)/)
27else
Daniel Schwierzecka180922a2011-07-18 06:09:15 +000028obj := $(if $(dir),$(SPLTREE)/$(dir)/,$(SPLTREE)/)
Ying Zhang2d2e3b62013-08-16 15:16:15 +080029endif
Daniel Schwierzecka180922a2011-07-18 06:09:15 +000030else
Marian Balakowiczd62379d2006-09-01 19:49:50 +020031obj := $(if $(dir),$(OBJTREE)/$(dir)/,$(OBJTREE)/)
Daniel Schwierzecka180922a2011-07-18 06:09:15 +000032endif
Marian Balakowiczd62379d2006-09-01 19:49:50 +020033src := $(if $(dir),$(SRCTREE)/$(dir)/,$(SRCTREE)/)
34
35$(shell mkdir -p $(obj))
36else
Daniel Schwierzecka180922a2011-07-18 06:09:15 +000037# Create object files for SPL in a separate directory
38ifeq ($(CONFIG_SPL_BUILD),y)
Ying Zhang2d2e3b62013-08-16 15:16:15 +080039ifeq ($(CONFIG_TPL_BUILD),y)
40obj := $(if $(dir),$(TPLTREE)/$(dir)/,$(TPLTREE)/)
41else
Daniel Schwierzecka180922a2011-07-18 06:09:15 +000042obj := $(if $(dir),$(SPLTREE)/$(dir)/,$(SPLTREE)/)
43
Ying Zhang2d2e3b62013-08-16 15:16:15 +080044endif
Daniel Schwierzecka180922a2011-07-18 06:09:15 +000045$(shell mkdir -p $(obj))
46else
Marian Balakowiczd62379d2006-09-01 19:49:50 +020047obj :=
Daniel Schwierzecka180922a2011-07-18 06:09:15 +000048endif
Marian Balakowiczd62379d2006-09-01 19:49:50 +020049src :=
50endif
51
wdenkdbae5042003-06-21 00:17:24 +000052# clean the slate ...
53PLATFORM_RELFLAGS =
54PLATFORM_CPPFLAGS =
55PLATFORM_LDFLAGS =
56
wdenke2211742002-11-02 23:30:20 +000057#########################################################################
58
Scott Wood16c91a12009-11-04 18:41:41 -060059HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \
60 $(HOSTCPPFLAGS)
Scott Wood16c91a12009-11-04 18:41:41 -060061
62#
63# Mac OS X / Darwin's C preprocessor is Apple specific. It
64# generates numerous errors and warnings. We want to bypass it
Wolfgang Denk302141d2010-11-27 23:30:56 +010065# and use GNU C's cpp. To do this we pass the -traditional-cpp
Scott Wood16c91a12009-11-04 18:41:41 -060066# option to the compiler. Note that the -traditional-cpp flag
67# DOES NOT have the same semantics as GNU C's flag, all it does
68# is invoke the GNU preprocessor in stock ANSI/ISO C fashion.
69#
70# Apple's linker is similar, thanks to the new 2 stage linking
71# multiple symbol definitions are treated as errors, hence the
72# -multiply_defined suppress option to turn off this error.
73#
74
Mike Frysinger8ccb33f2009-01-17 13:32:42 -050075ifeq ($(HOSTOS),darwin)
Andreas Biessmann788f4a22010-05-22 13:17:21 +020076# get major and minor product version (e.g. '10' and '6' for Snow Leopard)
77DARWIN_MAJOR_VERSION = $(shell sw_vers -productVersion | cut -f 1 -d '.')
78DARWIN_MINOR_VERSION = $(shell sw_vers -productVersion | cut -f 2 -d '.')
79
Mike Frysingera5698612010-08-03 19:17:38 -040080os_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \
81 $(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;)
Andreas Biessmann788f4a22010-05-22 13:17:21 +020082
83# Snow Leopards build environment has no longer restrictions as described above
Mike Frysingera5698612010-08-03 19:17:38 -040084HOSTCC = $(call os_x_before, 10, 5, "cc", "gcc")
85HOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp")
86HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress")
wdenke2211742002-11-02 23:30:20 +000087else
88HOSTCC = gcc
89endif
Scott Wood16c91a12009-11-04 18:41:41 -060090
91ifeq ($(HOSTOS),cygwin)
92HOSTCFLAGS += -ansi
93endif
94
wdenke2211742002-11-02 23:30:20 +000095#########################################################################
Wolfgang Denkaba58092005-10-04 22:38:24 +020096#
Tom Rini5436f9c2012-03-16 05:27:47 +000097# Option checker, gcc version (courtesy linux kernel) to ensure
Wolfgang Denkaba58092005-10-04 22:38:24 +020098# only supported compiler options are used
99#
Daniel Schwierzeck9ba618a2011-11-07 05:26:43 +0000100CC_OPTIONS_CACHE_FILE := $(OBJTREE)/include/generated/cc_options.mk
Tom Rinia384c6c2012-02-14 07:29:37 +0000101CC_TEST_OFILE := $(OBJTREE)/include/generated/cc_test_file.o
Daniel Schwierzeck9ba618a2011-11-07 05:26:43 +0000102
103-include $(CC_OPTIONS_CACHE_FILE)
104
Tom Rinia384c6c2012-02-14 07:29:37 +0000105cc-option-sys = $(shell mkdir -p $(dir $(CC_TEST_OFILE)); \
106 if $(CC) $(CFLAGS) $(1) -S -xc /dev/null -o $(CC_TEST_OFILE) \
Daniel Schwierzeck9ba618a2011-11-07 05:26:43 +0000107 > /dev/null 2>&1; then \
108 echo 'CC_OPTIONS += $(strip $1)' >> $(CC_OPTIONS_CACHE_FILE); \
109 echo "$(1)"; fi)
110
111ifeq ($(CONFIG_CC_OPT_CACHE_DISABLE),y)
112cc-option = $(strip $(if $(call cc-option-sys,$1),$1,$2))
113else
114cc-option = $(strip $(if $(findstring $1,$(CC_OPTIONS)),$1,\
115 $(if $(call cc-option-sys,$1),$1,$2)))
116endif
wdenke2211742002-11-02 23:30:20 +0000117
Tom Rini5436f9c2012-03-16 05:27:47 +0000118# cc-version
119# Usage gcc-ver := $(call cc-version)
Masahiro Yamada7935a822013-11-28 16:29:23 +0900120cc-version = $(shell $(SHELL) $(SRCTREE)/scripts/gcc-version.sh $(CC))
121binutils-version = $(shell $(SHELL) $(SRCTREE)/scripts/binutils-version.sh $(AS))
122dtc-version = $(shell $(SHELL) $(SRCTREE)/scripts/dtc-version.sh $(DTC))
Tom Rini5436f9c2012-03-16 05:27:47 +0000123
wdenke2211742002-11-02 23:30:20 +0000124#
125# Include the make variables (CC, etc...)
126#
127AS = $(CROSS_COMPILE)as
Khem Raj681b0e02012-08-02 06:19:34 +0000128
129# Always use GNU ld
130LD = $(shell if $(CROSS_COMPILE)ld.bfd -v > /dev/null 2>&1; \
131 then echo "$(CROSS_COMPILE)ld.bfd"; else echo "$(CROSS_COMPILE)ld"; fi;)
132
wdenke2211742002-11-02 23:30:20 +0000133CC = $(CROSS_COMPILE)gcc
134CPP = $(CC) -E
135AR = $(CROSS_COMPILE)ar
136NM = $(CROSS_COMPILE)nm
Mike Frysinger908e7762008-02-04 19:26:57 -0500137LDR = $(CROSS_COMPILE)ldr
wdenke2211742002-11-02 23:30:20 +0000138STRIP = $(CROSS_COMPILE)strip
139OBJCOPY = $(CROSS_COMPILE)objcopy
140OBJDUMP = $(CROSS_COMPILE)objdump
141RANLIB = $(CROSS_COMPILE)RANLIB
Simon Glass38d6b8d2011-10-15 05:48:21 +0000142DTC = dtc
Kim Phillips787d5322012-09-21 12:28:17 +0000143CHECK = sparse
wdenke2211742002-11-02 23:30:20 +0000144
Wolfgang Denk979b4bd2008-05-03 22:25:00 +0200145#########################################################################
146
147# Load generated board configuration
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800148ifeq ($(CONFIG_TPL_BUILD),y)
149# Include TPL autoconf
150sinclude $(OBJTREE)/include/tpl-autoconf.mk
151else
Joel Fernandes2c8c3c22013-08-19 16:14:14 +0800152ifeq ($(CONFIG_SPL_BUILD),y)
153# Include SPL autoconf
154sinclude $(OBJTREE)/include/spl-autoconf.mk
155else
156# Include normal autoconf
Wolfgang Denk979b4bd2008-05-03 22:25:00 +0200157sinclude $(OBJTREE)/include/autoconf.mk
Joel Fernandes2c8c3c22013-08-19 16:14:14 +0800158endif
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800159endif
Joakim Tjernlund31162e12011-01-17 23:39:26 +0100160sinclude $(OBJTREE)/include/config.mk
Wolfgang Denk979b4bd2008-05-03 22:25:00 +0200161
Peter Tyserd53e8fd2010-04-12 22:28:02 -0500162# Some architecture config.mk files need to know what CPUDIR is set to,
163# so calculate CPUDIR before including ARCH/SOC/CPU config.mk files.
Peter Tyser29514c72010-04-12 22:28:09 -0500164# Check if arch/$ARCH/cpu/$CPU exists, otherwise assume arch/$ARCH/cpu contains
165# CPU-specific code.
166CPUDIR=arch/$(ARCH)/cpu/$(CPU)
167ifneq ($(SRCTREE)/$(CPUDIR),$(wildcard $(SRCTREE)/$(CPUDIR)))
168CPUDIR=arch/$(ARCH)/cpu
169endif
Peter Tyserd53e8fd2010-04-12 22:28:02 -0500170
Peter Tysercede5d82010-04-12 22:28:04 -0500171sinclude $(TOPDIR)/arch/$(ARCH)/config.mk # include architecture dependend rules
Peter Tyserd53e8fd2010-04-12 22:28:02 -0500172sinclude $(TOPDIR)/$(CPUDIR)/config.mk # include CPU specific rules
173
Wolfgang Denk979b4bd2008-05-03 22:25:00 +0200174ifdef SOC
Peter Tyserd53e8fd2010-04-12 22:28:02 -0500175sinclude $(TOPDIR)/$(CPUDIR)/$(SOC)/config.mk # include SoC specific rules
Wolfgang Denk979b4bd2008-05-03 22:25:00 +0200176endif
177ifdef VENDOR
178BOARDDIR = $(VENDOR)/$(BOARD)
179else
180BOARDDIR = $(BOARD)
181endif
182ifdef BOARD
183sinclude $(TOPDIR)/board/$(BOARDDIR)/config.mk # include board specific rules
184endif
185
186#########################################################################
187
Mike Frysinger122035e2011-10-12 19:25:20 +0000188# We don't actually use $(ARFLAGS) anywhere anymore, so catch people
189# who are porting old code to latest mainline but not updating $(AR).
190ARFLAGS = $(error update your Makefile to use cmd_link_o_target and not AR)
wdenke2211742002-11-02 23:30:20 +0000191RELFLAGS= $(PLATFORM_RELFLAGS)
Heiko Schocherac1956e2006-04-20 08:42:42 +0200192DBGFLAGS= -g # -DDEBUG
wdenke2211742002-11-02 23:30:20 +0000193OPTFLAGS= -Os #-fomit-frame-pointer
Scott Wood34c6dd22011-04-06 13:31:37 +0000194
wdenkb00ec162003-06-19 23:40:20 +0000195OBJCFLAGS += --gap-fill=0xff
wdenke2211742002-11-02 23:30:20 +0000196
wdenkbb2d9272003-06-25 22:26:29 +0000197gccincdir := $(shell $(CC) -print-file-name=include)
198
wdenke2211742002-11-02 23:30:20 +0000199CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS) \
Marek Vasut21bb3ec2012-09-14 23:46:48 +0200200 -D__KERNEL__
Daniel Schwierzecka180922a2011-07-18 06:09:15 +0000201
202# Enable garbage collection of un-used sections for SPL
203ifeq ($(CONFIG_SPL_BUILD),y)
204CPPFLAGS += -ffunction-sections -fdata-sections
205LDFLAGS_FINAL += --gc-sections
206endif
207
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200208ifneq ($(CONFIG_SYS_TEXT_BASE),)
209CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE)
Mike Frysinger12805552008-01-28 05:28:50 -0500210endif
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200211
Daniel Schwierzecka180922a2011-07-18 06:09:15 +0000212ifeq ($(CONFIG_SPL_BUILD),y)
213CPPFLAGS += -DCONFIG_SPL_BUILD
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800214ifeq ($(CONFIG_TPL_BUILD),y)
215CPPFLAGS += -DCONFIG_TPL_BUILD
216endif
Daniel Schwierzecka180922a2011-07-18 06:09:15 +0000217endif
218
Simon Glass66828322013-03-08 13:45:27 +0000219# Does this architecture support generic board init?
220ifeq ($(__HAVE_ARCH_GENERIC_BOARD),)
221ifneq ($(CONFIG_SYS_GENERIC_BOARD),)
Simon Glass07253bb2013-04-20 08:42:36 +0000222CHECK_GENERIC_BOARD = $(error Your architecture does not support generic board. \
223Please undefined CONFIG_SYS_GENERIC_BOARD in your board config file)
Simon Glass66828322013-03-08 13:45:27 +0000224endif
225endif
226
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200227ifneq ($(OBJTREE),$(SRCTREE))
Masahiro Yamadac4020352013-11-26 16:13:59 +0900228CPPFLAGS += -I$(OBJTREE)/include
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200229endif
230
Masahiro Yamadac4020352013-11-26 16:13:59 +0900231CPPFLAGS += -I$(TOPDIR)/include -I$(SRCTREE)/arch/$(ARCH)/include
Wolfgang Denka1be4762008-05-20 16:00:29 +0200232CPPFLAGS += -fno-builtin -ffreestanding -nostdinc \
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200233 -isystem $(gccincdir) -pipe $(PLATFORM_CPPFLAGS)
wdenke2211742002-11-02 23:30:20 +0000234
wdenke2211742002-11-02 23:30:20 +0000235CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes
Marek Vasutd086bf12013-04-27 07:50:11 +0000236
237ifdef BUILD_TAG
238CFLAGS += -DBUILD_TAG='"$(BUILD_TAG)"'
wdenke2211742002-11-02 23:30:20 +0000239endif
240
Wolfgang Denk9209ed52011-11-01 20:54:02 +0000241CFLAGS_SSP := $(call cc-option,-fno-stack-protector)
242CFLAGS += $(CFLAGS_SSP)
Mike Frysingerf6312ad2011-04-25 08:06:40 +0000243# Some toolchains enable security related warning flags by default,
244# but they don't make much sense in the u-boot world, so disable them.
Wolfgang Denk9209ed52011-11-01 20:54:02 +0000245CFLAGS_WARN := $(call cc-option,-Wno-format-nonliteral) \
246 $(call cc-option,-Wno-format-security)
247CFLAGS += $(CFLAGS_WARN)
Haavard Skinnemoene7af2072008-05-19 12:26:38 +0200248
Tom Rinib7f34132012-02-20 13:50:10 +0000249# Report stack usage if supported
250CFLAGS_STACK := $(call cc-option,-fstack-usage)
251CFLAGS += $(CFLAGS_STACK)
252
Simon Glass831aa542013-06-11 11:14:41 -0700253BCURDIR = $(subst $(SRCTREE)/,,$(CURDIR:$(obj)%=%))
254
255ifeq ($(findstring examples/,$(BCURDIR)),)
256ifeq ($(CONFIG_SPL_BUILD),)
257ifdef FTRACE
258CFLAGS += -finstrument-functions -DFTRACE
259endif
260endif
261endif
262
Haavard Skinnemoen1cd6bf02006-10-26 17:55:31 +0200263# $(CPPFLAGS) sets -g, which causes gcc to pass a suitable -g<format>
264# option to the assembler.
265AFLAGS_DEBUG :=
Marian Balakowicz9a460d22006-05-17 12:18:48 +0200266
Marian Balakowicz3e8b1dc2006-05-09 11:28:36 +0200267# turn jbsr into jsr for m68k
268ifeq ($(ARCH),m68k)
269ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4)
270AFLAGS_DEBUG := -Wa,-gstabs,-S
271endif
Marian Balakowicz3e8b1dc2006-05-09 11:28:36 +0200272endif
Marian Balakowicz9a460d22006-05-17 12:18:48 +0200273
wdenke2211742002-11-02 23:30:20 +0000274AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS)
275
Nobuhiro Iwamatsub859b8c2011-01-06 10:23:54 +0900276LDFLAGS += $(PLATFORM_LDFLAGS)
Haiying Wang39358732011-02-22 16:38:05 -0500277LDFLAGS_FINAL += -Bstatic
Nobuhiro Iwamatsub859b8c2011-01-06 10:23:54 +0900278
Haiying Wang39358732011-02-22 16:38:05 -0500279LDFLAGS_u-boot += -T $(obj)u-boot.lds $(LDFLAGS_FINAL)
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200280ifneq ($(CONFIG_SYS_TEXT_BASE),)
Nobuhiro Iwamatsub859b8c2011-01-06 10:23:54 +0900281LDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE)
Mike Frysinger12805552008-01-28 05:28:50 -0500282endif
wdenke2211742002-11-02 23:30:20 +0000283
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800284LDFLAGS_$(SPL_BIN) += -T $(obj)u-boot-spl.lds $(LDFLAGS_FINAL)
Daniel Schwierzecka180922a2011-07-18 06:09:15 +0000285ifneq ($(CONFIG_SPL_TEXT_BASE),)
Ying Zhang2d2e3b62013-08-16 15:16:15 +0800286LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE)
Daniel Schwierzecka180922a2011-07-18 06:09:15 +0000287endif
288
Kim Phillips787d5322012-09-21 12:28:17 +0000289# Linus' kernel sanity checking tool
290CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \
Wolfgang Denkec7fbf52013-10-04 17:43:24 +0200291 -Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF)
Kim Phillips787d5322012-09-21 12:28:17 +0000292
wdenke2211742002-11-02 23:30:20 +0000293# Location of a usable BFD library, where we define "usable" as
294# "built for ${HOST}, supports ${TARGET}". Sensible values are
295# - When cross-compiling: the root of the cross-environment
296# - Linux/ppc (native): /usr
297# - NetBSD/ppc (native): you lose ... (must extract these from the
298# binutils build directory, plus the native and U-Boot include
299# files don't like each other)
300#
301# So far, this is used only by tools/gdb/Makefile.
302
Mike Frysinger8ccb33f2009-01-17 13:32:42 -0500303ifeq ($(HOSTOS),darwin)
wdenke2211742002-11-02 23:30:20 +0000304BFD_ROOT_DIR = /usr/local/tools
305else
wdenk2029f4d2002-11-21 23:11:29 +0000306ifeq ($(HOSTARCH),$(ARCH))
307# native
308BFD_ROOT_DIR = /usr
309else
wdenke2211742002-11-02 23:30:20 +0000310#BFD_ROOT_DIR = /LinuxPPC/CDK # Linux/i386
311#BFD_ROOT_DIR = /usr/pkg/cross # NetBSD/i386
wdenke2211742002-11-02 23:30:20 +0000312BFD_ROOT_DIR = /opt/powerpc
313endif
wdenk2029f4d2002-11-21 23:11:29 +0000314endif
wdenke2211742002-11-02 23:30:20 +0000315
wdenke2211742002-11-02 23:30:20 +0000316#########################################################################
317
Masahiro Yamadaf2431802014-02-04 17:24:10 +0900318export HOSTCC HOSTCFLAGS HOSTLDFLAGS CROSS_COMPILE \
Peter Tyser98c02862008-11-12 13:06:48 -0600319 AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP MAKE
Wolfgang Denk0708bc62010-10-07 21:51:12 +0200320export CONFIG_SYS_TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS
wdenke2211742002-11-02 23:30:20 +0000321
322#########################################################################
323
Mike Frysingera79d8e42009-06-14 09:33:00 -0400324# Allow boards to use custom optimize flags on a per dir/file basis
Mike Frysinger031711b2010-12-15 07:17:31 -0500325ALL_AFLAGS = $(AFLAGS) $(AFLAGS_$(BCURDIR)/$(@F)) $(AFLAGS_$(BCURDIR))
326ALL_CFLAGS = $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR))
Simon Glass935c5bc2011-10-07 13:53:49 +0000327EXTRA_CPPFLAGS = $(CPPFLAGS_$(BCURDIR)/$(@F)) $(CPPFLAGS_$(BCURDIR))
328ALL_CFLAGS += $(EXTRA_CPPFLAGS)
329
330# The _DEP version uses the $< file target (for dependency generation)
331# See rules.mk
332EXTRA_CPPFLAGS_DEP = $(CPPFLAGS_$(BCURDIR)/$(addsuffix .o,$(basename $<))) \
333 $(CPPFLAGS_$(BCURDIR))
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200334$(obj)%.s: %.S
Mike Frysinger031711b2010-12-15 07:17:31 -0500335 $(CPP) $(ALL_AFLAGS) -o $@ $<
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200336$(obj)%.o: %.S
Mike Frysinger031711b2010-12-15 07:17:31 -0500337 $(CC) $(ALL_AFLAGS) -o $@ $< -c
Marian Balakowiczd62379d2006-09-01 19:49:50 +0200338$(obj)%.o: %.c
Kim Phillips787d5322012-09-21 12:28:17 +0000339ifneq ($(CHECKSRC),0)
340 $(CHECK) $(CHECKFLAGS) $(ALL_CFLAGS) $<
341endif
Mike Frysinger031711b2010-12-15 07:17:31 -0500342 $(CC) $(ALL_CFLAGS) -o $@ $< -c
Mike Frysingerc710f992009-06-14 11:03:48 -0400343$(obj)%.i: %.c
Mike Frysinger031711b2010-12-15 07:17:31 -0500344 $(CPP) $(ALL_CFLAGS) -o $@ $< -c
Mike Frysingerc710f992009-06-14 11:03:48 -0400345$(obj)%.s: %.c
Mike Frysinger031711b2010-12-15 07:17:31 -0500346 $(CC) $(ALL_CFLAGS) -o $@ $< -c -S
wdenke2211742002-11-02 23:30:20 +0000347
348#########################################################################
Sebastien Carliera8d426f2010-11-05 15:48:07 +0100349
350# If the list of objects to link is empty, just create an empty built-in.o
351cmd_link_o_target = $(if $(strip $1),\
Nobuhiro Iwamatsub859b8c2011-01-06 10:23:54 +0900352 $(LD) $(LDFLAGS) -r -o $@ $1,\
Wolfgang Denk302141d2010-11-27 23:30:56 +0100353 rm -f $@; $(AR) rcs $@ )
Sebastien Carliera8d426f2010-11-05 15:48:07 +0100354
355#########################################################################