]>
Commit | Line | Data |
---|---|---|
f8c4a270 JB |
1 | # BK Id: %F% %I% %G% %U% %#% |
2 | # | |
3 | # This file is included by the global makefile so that you can add your own | |
4 | # architecture-specific flags and dependencies. Remember to do have actions | |
5 | # for "archclean" and "archdep" for cleaning up and making dependencies for | |
6 | # this architecture | |
7 | # | |
8 | # This file is subject to the terms and conditions of the GNU General Public | |
9 | # License. See the file "COPYING" in the main directory of this archive | |
10 | # for more details. | |
11 | # | |
12 | # Copyright (C) 1994 by Linus Torvalds | |
13 | # Modifications for the OpenRISC architecture: | |
14 | # Copyright (C) 2003 Matjaz Breskvar <[email protected]> | |
15 | # Copyright (C) 2010-2011 Jonas Bonn <[email protected]> | |
16 | # | |
17 | # Based on: | |
18 | # arch/i386/Makefile | |
19 | ||
20 | KBUILD_DEFCONFIG := or1ksim_defconfig | |
21 | ||
22 | LDFLAGS := | |
23 | OBJCOPYFLAGS := -O binary -R .note -R .comment -S | |
24 | LDFLAGS_vmlinux := | |
25 | LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name) | |
26 | ||
ee4f96d0 | 27 | KBUILD_CFLAGS += -pipe -ffixed-r10 -D__linux__ |
afa83808 | 28 | CHECKFLAGS += -mbig-endian |
f8c4a270 JB |
29 | |
30 | ifeq ($(CONFIG_OPENRISC_HAVE_INST_MUL),y) | |
31 | KBUILD_CFLAGS += $(call cc-option,-mhard-mul) | |
32 | else | |
33 | KBUILD_CFLAGS += $(call cc-option,-msoft-mul) | |
34 | endif | |
35 | ||
36 | ifeq ($(CONFIG_OPENRISC_HAVE_INST_DIV),y) | |
37 | KBUILD_CFLAGS += $(call cc-option,-mhard-div) | |
38 | else | |
39 | KBUILD_CFLAGS += $(call cc-option,-msoft-div) | |
40 | endif | |
41 | ||
cf5e6def | 42 | head-y := arch/openrisc/kernel/head.o |
f8c4a270 JB |
43 | |
44 | core-y += arch/openrisc/lib/ \ | |
45 | arch/openrisc/kernel/ \ | |
46 | arch/openrisc/mm/ | |
47 | libs-y += $(LIBGCC) | |
48 | ||
49 | ifneq '$(CONFIG_OPENRISC_BUILTIN_DTB)' '""' | |
50 | BUILTIN_DTB := y | |
51 | else | |
52 | BUILTIN_DTB := n | |
53 | endif | |
19fbd6b2 | 54 | core-$(BUILTIN_DTB) += arch/openrisc/boot/dts/ |
f8c4a270 JB |
55 | |
56 | all: vmlinux |