tracing: extend sched_pi_setprio
[deliverable/linux.git] / arch / cris / Makefile
CommitLineData
2c2314bf 1#
1da177e4
LT
2# cris/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies. Remember to do have actions
6# for "archclean" and "archdep" for cleaning up and making dependencies for
7# this architecture
8#
9# This file is subject to the terms and conditions of the GNU General Public
10# License. See the file "COPYING" in the main directory of this archive
11# for more details.
12
8f808417
AB
13KBUILD_DEFCONFIG := etrax-100lx_v2_defconfig
14
1da177e4
LT
15arch-y := v10
16arch-$(CONFIG_ETRAX_ARCH_V10) := v10
3e41d652 17arch-$(CONFIG_ETRAX_ARCH_V32) := v32
1da177e4 18
2c2314bf
JN
19# No config available for make clean etc
20mach-y := fs
21mach-$(CONFIG_CRIS_MACH_ARTPEC3) := a3
22mach-$(CONFIG_ETRAXFS) := fs
23
1da177e4
LT
24ifneq ($(arch-y),)
25SARCH := arch-$(arch-y)
abbf1590
DH
26inc := -Iarch/cris/include/uapi/$(SARCH)
27inc += -Iarch/cris/include/$(SARCH)
28inc += -Iarch/cris/include/uapi/$(SARCH)/arch
c5ec6fb0 29inc += -Iarch/cris/include/$(SARCH)/arch
1da177e4
LT
30else
31SARCH :=
556dcee7 32inc :=
1da177e4
LT
33endif
34
2c2314bf
JN
35ifneq ($(mach-y),)
36MACH := mach-$(mach-y)
556dcee7
JN
37inc += -Iarch/cris/include/$(SARCH)/$(MACH)/
38inc += -Iarch/cris/include/$(SARCH)/$(MACH)/mach
2c2314bf
JN
39else
40MACH :=
41endif
42
a9f75ac5
RV
43ifneq ($(CONFIG_BUILTIN_DTB),"")
44core-$(CONFIG_OF) += arch/cris/boot/dts/
45endif
46
1da177e4
LT
47LD = $(CROSS_COMPILE)ld -mcrislinux
48
49OBJCOPYFLAGS := -O binary -R .note -R .comment -S
50
556dcee7
JN
51KBUILD_AFLAGS += -mlinux -march=$(arch-y) $(inc)
52KBUILD_CFLAGS += -mlinux -march=$(arch-y) -pipe $(inc)
53KBUILD_CPPFLAGS += $(inc)
1da177e4
LT
54
55ifdef CONFIG_FRAME_POINTER
a0f97e06
SR
56KBUILD_CFLAGS := $(subst -fomit-frame-pointer,,$(KBUILD_CFLAGS)) -g
57KBUILD_CFLAGS += -fno-omit-frame-pointer
1da177e4
LT
58endif
59
c5ec6fb0 60head-y := arch/cris/$(SARCH)/kernel/head.o
1da177e4 61
a0f97e06 62LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-file-name=libgcc.a)
1da177e4 63
c5ec6fb0
JN
64core-y += arch/cris/kernel/ arch/cris/mm/
65core-y += arch/cris/$(SARCH)/kernel/ arch/cris/$(SARCH)/mm/
2c2314bf 66ifdef CONFIG_ETRAX_ARCH_V32
c5ec6fb0 67core-y += arch/cris/$(SARCH)/$(MACH)/
2c2314bf 68endif
c5ec6fb0
JN
69drivers-y += arch/cris/$(SARCH)/drivers/
70libs-y += arch/cris/$(SARCH)/lib/ $(LIBGCC)
1da177e4 71
3e41d652 72# cris source path
c5ec6fb0 73SRC_ARCH = $(srctree)/arch/cris
3e41d652 74# cris object files path
c5ec6fb0 75OBJ_ARCH = $(objtree)/arch/cris
3e41d652 76
66ab3a74 77boot := arch/cris/boot
c5ec6fb0 78MACHINE := arch/cris/$(SARCH)
1da177e4 79
2c2314bf 80all: zImage
1da177e4 81
2c2314bf
JN
82zImage Image: vmlinux
83 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@
1da177e4 84
c5ec6fb0 85archprepare:
1da177e4 86
2c2314bf 87archclean:
66ab3a74
JN
88 $(Q)if [ -e arch/cris/boot ]; then \
89 $(MAKE) $(clean)=arch/cris/boot; \
2c2314bf
JN
90 fi
91
92CLEAN_FILES += \
66ab3a74
JN
93 $(boot)/zImage \
94 $(boot)/compressed/decompress.bin \
95 $(boot)/compressed/piggy.gz \
96 $(boot)/rescue/rescue.bin
2c2314bf 97
0365f707 98
c5ec6fb0 99# MRPROPER_FILES +=
2c2314bf
JN
100
101define archhelp
c5ec6fb0
JN
102 echo '* zImage - Compressed kernel image (arch/cris/boot/zImage)'
103 echo '* Image - Uncompressed kernel image (arch/cris/boot/Image)'
2c2314bf 104endef
This page took 0.682282 seconds and 5 git commands to generate.