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>
master
Masahiro Yamada 10 years ago committed by Tom Rini
parent e0d5d9f888
commit d958002589
  1. 8
      config.mk
  2. 4
      examples/api/Makefile
  3. 4
      examples/standalone/Makefile

@ -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)

@ -4,6 +4,10 @@
# SPDX-License-Identifier: GPL-2.0+
#
ifdef FTRACE
CFLAGS += -finstrument-functions -DFTRACE
endif
ifeq ($(ARCH),powerpc)
LOAD_ADDR = 0x40000
endif

@ -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

Loading…
Cancel
Save