summaryrefslogtreecommitdiffstats
path: root/arch/ppc/Makefile
blob: 2c9c5359f03e53d8786c8ae9b6b539a4f3c20764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52

CPPFLAGS += -ffixed-r14 	\
	-meabi -D __PPC__ -D CONFIG_PPC \
	-fno-strict-aliasing

ifdef CONFIG_RELOCATABLE
CPPFLAGS += -fPIC -mrelocatable
endif


machine-$(CONFIG_ARCH_MPC5200)			:= mpc5200
board-$(CONFIG_MACH_PHYCORE_MPC5200B_TINY)	:= pcm030
cpu-$(CONFIG_ARCH_MPC5200)			:= mpc5xxx

TEXT_BASE = $(CONFIG_TEXT_BASE)

CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -P

# Add cleanup flags
ifndef CONFIG_MODULE
CPPFLAGS += -fdata-sections -ffunction-sections
endif

machdirs := $(patsubst %,arch/ppc/mach-%/,$(cpu-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  := board/$(board-y)/
else
BOARD  :=
endif

ifneq ($(cpu-y),)
CPU  := arch/ppc/mach-$(cpu-y)/
else
CPU  :=
endif

common-y += $(BOARD) $(CPU)
common-y += arch/ppc/lib/

lds-y += $(BOARD)/barebox.lds