summaryrefslogtreecommitdiffstats
path: root/examples/standalone/Makefile
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2013-11-11 12:45:40 +0900
committerTom Rini <trini@ti.com>2013-11-15 15:49:36 -0500
commit13b213b47de472f29dfe03f71989892d8ffb5881 (patch)
treed1e3afc9011be954d2a3c3badcf8861a4a637233 /examples/standalone/Makefile
parent5f9cc8e6387a5ba8962e8466c8bcbb8c07caf845 (diff)
downloadblackbird-obmc-uboot-13b213b47de472f29dfe03f71989892d8ffb5881.tar.gz
blackbird-obmc-uboot-13b213b47de472f29dfe03f71989892d8ffb5881.zip
examples: remove the remainders of dead board
Commit 309a292e deleted OXC board, but missed to remove the standalone example specific to OXC board. eepro100_eeprom.c has been an orphan file for a long term. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'examples/standalone/Makefile')
-rw-r--r--examples/standalone/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/standalone/Makefile b/examples/standalone/Makefile
index 4afedea065..93469217ef 100644
--- a/examples/standalone/Makefile
+++ b/examples/standalone/Makefile
@@ -8,7 +8,6 @@
include $(TOPDIR)/config.mk
ELF-$(ARCH) :=
-ELF-$(BOARD) :=
ELF-$(CPU) :=
ELF-y := hello_world
@@ -20,14 +19,13 @@ ELF-mpc5xxx += interrupt
ELF-mpc8xx += test_burst timer
ELF-mpc8260 += mem_to_mem_idma2intr
ELF-ppc += sched
-ELF-oxc += eepro100_eeprom
#
# Some versions of make do not handle trailing white spaces properly;
# leading to build failures. The problem was found with GNU Make 3.80.
# Using 'strip' as a workaround for the problem.
#
-ELF := $(strip $(ELF-y) $(ELF-$(ARCH)) $(ELF-$(BOARD)) $(ELF-$(CPU)))
+ELF := $(strip $(ELF-y) $(ELF-$(ARCH)) $(ELF-$(CPU)))
SREC := $(addsuffix .srec,$(ELF))
BIN := $(addsuffix .bin,$(ELF))
OpenPOWER on IntegriCloud