Makefile 1.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#
# m32r/Makefile
#
4 5 6
# This file is included by the global makefile so that you can add your own
# architecture-specific flags and dependencies.
#
L
Linus Torvalds 已提交
7

A
Adrian Bunk 已提交
8 9
KBUILD_DEFCONFIG := m32700ut.smp_defconfig

L
Linus Torvalds 已提交
10 11
LDFLAGS		:=
OBJCOPYFLAGS	:= -O binary -R .note -R .comment -S
12
LDFLAGS_vmlinux	:=
L
Linus Torvalds 已提交
13

14
KBUILD_CFLAGS += -pipe -fno-schedule-insns
15
KBUILD_CFLAGS_KERNEL += -mmodel=medium
16
KBUILD_CFLAGS_MODULE += -mmodel=large
L
Linus Torvalds 已提交
17 18 19

ifdef CONFIG_CHIP_VDEC2
cflags-$(CONFIG_ISA_M32R2)	+= -DNO_FPU -Wa,-bitinst
20
aflags-$(CONFIG_ISA_M32R2)	+= -DNO_FPU -O2 -Wa,-bitinst -Wa,-no-parallel
L
Linus Torvalds 已提交
21 22
else
cflags-$(CONFIG_ISA_M32R2)	+= -DNO_FPU -m32r2
23
aflags-$(CONFIG_ISA_M32R2)	+= -DNO_FPU -m32r2 -O2
L
Linus Torvalds 已提交
24 25 26
endif

cflags-$(CONFIG_ISA_M32R)	+= -DNO_FPU
27
aflags-$(CONFIG_ISA_M32R)	+= -DNO_FPU -O2 -Wa,-no-bitinst
L
Linus Torvalds 已提交
28

29
KBUILD_CFLAGS += $(cflags-y)
30
KBUILD_AFLAGS += $(aflags-y)
L
Linus Torvalds 已提交
31

A
Al Viro 已提交
32
CHECKFLAGS	+= -D__m32r__ -D__BIG_ENDIAN__=1
L
Linus Torvalds 已提交
33 34 35

head-y	:= arch/m32r/kernel/head.o arch/m32r/kernel/init_task.o

36
LIBGCC	:= $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
L
Linus Torvalds 已提交
37 38 39 40

libs-y	+= arch/m32r/lib/ $(LIBGCC)
core-y	+= arch/m32r/kernel/	\
	   arch/m32r/mm/	\
41 42
	   arch/m32r/boot/	\
	   arch/m32r/platforms/
L
Linus Torvalds 已提交
43 44 45 46 47

drivers-$(CONFIG_OPROFILE)	+= arch/m32r/oprofile/

boot := arch/m32r/boot

48
PHONY += zImage
L
Linus Torvalds 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62

all: zImage

zImage: vmlinux
	$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@

compressed: zImage

archclean:
	$(Q)$(MAKE) $(clean)=$(boot)

define archhelp
	echo  '* zImage          - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
endef