diff options
author | Masahiro Yamada | 2014-02-04 17:24:23 +0900 |
---|---|---|
committer | Tom Rini | 2014-02-19 11:07:50 -0500 |
commit | d958002589cb724907e8d4360d546403d1e6b7d8 (patch) | |
tree | 9c9098186384c86c90e80c3db0f64e9c4b191080 | |
parent | e0d5d9f8887e5f80f6df4ff20bb1816a7edefd39 (diff) |
Makefile: move some flags to examples makefiles
This commit moves some flags which are used
under examples/ directory only.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
-rw-r--r-- | config.mk | 8 | ||||
-rw-r--r-- | examples/api/Makefile | 4 | ||||
-rw-r--r-- | examples/standalone/Makefile | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/config.mk b/config.mk index 597a5660c33..ed1a51972f5 100644 --- a/config.mk +++ b/config.mk @@ -102,14 +102,6 @@ CFLAGS := $(KBUILD_CFLAGS) $(CPPFLAGS) BCURDIR = $(subst $(SRCTREE)/,,$(CURDIR:$(obj)%=%)) -ifeq ($(findstring examples/,$(BCURDIR)),) -ifeq ($(CONFIG_SPL_BUILD),) -ifdef FTRACE -CFLAGS += -finstrument-functions -DFTRACE -endif -endif -endif - AFLAGS := $(KBUILD_AFLAGS) $(CPPFLAGS) LDFLAGS += $(PLATFORM_LDFLAGS) diff --git a/examples/api/Makefile b/examples/api/Makefile index 52f43680fc6..ee3c487c132 100644 --- a/examples/api/Makefile +++ b/examples/api/Makefile @@ -4,6 +4,10 @@ # SPDX-License-Identifier: GPL-2.0+ # +ifdef FTRACE +CFLAGS += -finstrument-functions -DFTRACE +endif + ifeq ($(ARCH),powerpc) LOAD_ADDR = 0x40000 endif diff --git a/examples/standalone/Makefile b/examples/standalone/Makefile index cad440954e1..1f8d70ce8a7 100644 --- a/examples/standalone/Makefile +++ b/examples/standalone/Makefile @@ -5,6 +5,10 @@ # SPDX-License-Identifier: GPL-2.0+ # +ifdef FTRACE +CFLAGS += -finstrument-functions -DFTRACE +endif + extra-y := hello_world extra-$(CONFIG_SMC91111) += smc91111_eeprom extra-$(CONFIG_SMC911X) += smc911x_eeprom |