summaryrefslogtreecommitdiffstats
path: root/arch/m68k/Makefile
blob: 86afb24732e3511ba0356a24245fbd8ba948e4bc (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#
# (C) Copyright 2007 Carsten Schlote <schlote@vahanus.net>
# See file CREDITS for list of people who contributed to this project.
#
# This file is part of barebox.
#
# barebox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# barebox is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with barebox.  If not, see <http://www.gnu.org/licenses/>.
#

CPPFLAGS += -isystem $(gccincdir) -fno-strict-aliasing


machine-$(CONFIG_ARCH_MCF54xx)	   := mcfv4e
board-$(CONFIG_MACH_KPUKDR1)	   := kp_ukd_r1
board-$(CONFIG_MACH_KPUKDR1_NUM)   := kp_ukd_r1_num
board-$(CONFIG_MACH_KPUKDR2)	   := kp_ukd_r2
board-$(CONFIG_MACH_KPUKDR2_NUM)   := kp_ukd_r2_num
board-$(CONFIG_MACH_PCM982_5485)   := phycore_mcf54xx
board-$(CONFIG_MACH_PCM982_5475)   := phycore_mcf54xx
board-$(CONFIG_MACH_PCM982_5475_NUM) := phycore_mcf54xx_num
board-$(CONFIG_MACH_PCM982_54455)  := phycore_mcf5445x

cpu-$(CONFIG_MCFV4E)               := mcfv4e
cpu-$(CONFIG_MCFV4M)               := mcfv4m

TEXT_BASE = $(CONFIG_TEXT_BASE)

CPPFLAGS += -DTEXT_BASE=$(TEXT_BASE) -P
AFLAGS += -gdwarf-2 -save-temps
# FIXME - remove overide
CFLAGS += -msoft-float -mcfv4e -gdwarf-2 -feliminate-unused-debug-types \
	-fmerge-all-constants
# Incompatible code in barebox for -std=c99
LDFLAGS_barebox  :=-L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
#  --verbose --stats

machdirs := $(patsubst %,arch/m68k/mach-%/,$(machine-y))

ifeq ($(KBUILD_SRC),)
CPPFLAGS += $(patsubst %,-I%include,$(machdirs))
else
CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
endif


all: $(KBUILD_IMAGE)

archprepare: maketools

PHONY += maketools


ifneq ($(board-y),)
BOARD  := arch/m68k/boards/$(board-y)/
else
BOARD  :=
endif

ifneq ($(machine-y),)
MACH  := arch/m68k/mach-$(machine-y)/
else
MACH  :=
endif

common-y += $(BOARD) $(MACH)
common-y += arch/m68k/lib/ arch/m68k/cpu/

lds-$(CONFIG_GENERIC_LINKER_SCRIPT)   := arch/m68k/lib/barebox.lds
lds-$(CONFIG_BOARD_LINKER_SCRIPT)     := $(BOARD)/barebox.lds

CLEAN_FILES    += arch/m68k/lib/barebox.lds