blob: d73b58c847a63f3786ac3e69da0795363ee74ca7 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001# SPDX-License-Identifier: GPL-2.0
2#
3# m32r/Makefile
4#
5# This file is included by the global makefile so that you can add your own
6# architecture-specific flags and dependencies.
7#
8
9KBUILD_DEFCONFIG := m32700ut.smp_defconfig
10
11LDFLAGS :=
12OBJCOPYFLAGS := -O binary -R .note -R .comment -S
13LDFLAGS_vmlinux :=
14
15KBUILD_CFLAGS += -pipe -fno-schedule-insns
16KBUILD_CFLAGS_KERNEL += -mmodel=medium
17KBUILD_CFLAGS_MODULE += -mmodel=large
18
19ifdef CONFIG_CHIP_VDEC2
20cflags-$(CONFIG_ISA_M32R2) += -DNO_FPU -Wa,-bitinst
21aflags-$(CONFIG_ISA_M32R2) += -DNO_FPU -O2 -Wa,-bitinst -Wa,-no-parallel
22else
23cflags-$(CONFIG_ISA_M32R2) += -DNO_FPU -m32r2
24aflags-$(CONFIG_ISA_M32R2) += -DNO_FPU -m32r2 -O2
25endif
26
27cflags-$(CONFIG_ISA_M32R) += -DNO_FPU
28aflags-$(CONFIG_ISA_M32R) += -DNO_FPU -O2 -Wa,-no-bitinst
29
30KBUILD_CFLAGS += $(cflags-y)
31KBUILD_AFLAGS += $(aflags-y)
32
33CHECKFLAGS += -D__m32r__ -D__BIG_ENDIAN__=1
34
35head-y := arch/m32r/kernel/head.o
36
37LIBGCC := $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
38
39libs-y += arch/m32r/lib/ $(LIBGCC)
40core-y += arch/m32r/kernel/ \
41 arch/m32r/mm/ \
42 arch/m32r/boot/ \
43 arch/m32r/platforms/
44
45drivers-$(CONFIG_OPROFILE) += arch/m32r/oprofile/
46
47boot := arch/m32r/boot
48
49PHONY += zImage
50
51all: zImage
52
53zImage: vmlinux
54 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
55
56compressed: zImage
57
58archclean:
59 $(Q)$(MAKE) $(clean)=$(boot)
60
61define archhelp
62 echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)'
63endef