summaryrefslogtreecommitdiffstats
path: root/arch/ppc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/ppc/Makefile')
-rw-r--r--arch/ppc/Makefile73
1 files changed, 0 insertions, 73 deletions
diff --git a/arch/ppc/Makefile b/arch/ppc/Makefile
deleted file mode 100644
index 2fb9b14422..0000000000
--- a/arch/ppc/Makefile
+++ /dev/null
@@ -1,73 +0,0 @@
-
-CPPFLAGS += -ffixed-r14 -m32 \
- -meabi -D __PPC__ -D CONFIG_PPC \
- -fno-strict-aliasing -mno-spe -mspe=no
-
-ifdef CONFIG_RELOCATABLE
-CPPFLAGS += -fPIC -mrelocatable
-endif
-
-ifdef CONFIG_MPC85xx
-CPPFLAGS += -Wa,-me500x2 -msoft-float -mno-string
-endif
-
-board-$(CONFIG_MACH_PHYCORE_MPC5200B_TINY) := pcm030
-board-$(CONFIG_P1010RDB) := freescale-p1010rdb
-board-$(CONFIG_P2020RDB) := freescale-p2020rdb
-board-$(CONFIG_P1022DS) := freescale-p1022ds
-board-$(CONFIG_DA923RC) := owc-da923rc
-
-machine-$(CONFIG_ARCH_MPC5200) := mpc5xxx
-machine-$(CONFIG_ARCH_MPC85XX) := mpc85xx
-
-cpu-$(CONFIG_ARCH_MPC85XX) := 85xx
-
-TEXT_BASE = $(CONFIG_TEXT_BASE)
-
-CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE)
-
-# Add cleanup flags
-ifndef CONFIG_MODULES
-CPPFLAGS += -fdata-sections -ffunction-sections
-LDFLAGS_barebox += --gc-sections
-endif
-
-machdirs := $(patsubst %,arch/ppc/mach-%/,$(machine-y))
-
-ifeq ($(KBUILD_SRC),)
-CPPFLAGS += $(patsubst %,-I%include,$(machdirs))
-else
-CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
-endif
-
-archprepare: maketools
-
-PHONY += maketools
-
-
-ifneq ($(board-y),)
-BOARD := arch/ppc/boards/$(board-y)/
-else
-BOARD :=
-endif
-
-ifneq ($(machine-y),)
-MACH := arch/ppc/mach-$(machine-y)/
-else
-MACH :=
-endif
-
-ifneq ($(cpu-y),)
-CPU := arch/ppc/cpu-$(cpu-y)/
-else
-CPU :=
-endif
-
-common-y += $(BOARD) $(CPU) $(MACH)
-common-y += arch/ppc/lib/
-
-ifdef CONFIG_MPC85xx
-lds-y += $(MACH)/barebox.lds
-else
-lds-y += $(BOARD)/barebox.lds
-endif