Makefile 1.3 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 8 9

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

12
KBUILD_CFLAGS += -pipe -fno-schedule-insns
L
Linus Torvalds 已提交
13 14 15 16 17
CFLAGS_KERNEL += -mmodel=medium
CFLAGS_MODULE += -mmodel=large

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

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

27
KBUILD_CFLAGS += $(cflags-y)
L
Linus Torvalds 已提交
28 29
AFLAGS += $(aflags-y)

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

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

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

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

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

boot := arch/m32r/boot

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

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