Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # sparc64/Makefile |
| 2 | # |
| 3 | # Makefile for the architecture dependent flags and dependencies on the |
| 4 | # 64-bit Sparc. |
| 5 | # |
| 6 | # Copyright (C) 1996,1998 David S. Miller (davem@caip.rutgers.edu) |
| 7 | # Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz) |
| 8 | # |
| 9 | |
| 10 | CHECKFLAGS += -D__sparc__ -D__sparc_v9__ -m64 |
| 11 | |
Sam Ravnborg | 9ae95bc | 2008-07-07 22:30:35 +0200 | [diff] [blame] | 12 | # Undefine sparc when processing vmlinux.lds - it is used |
| 13 | # And teach CPP we are doing 64 bit builds (for this case) |
| 14 | CPPFLAGS_vmlinux.lds += -m64 -Usparc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | LDFLAGS := -m elf64_sparc |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
David S. Miller | 54cd6dd | 2008-02-14 00:37:21 -0800 | [diff] [blame] | 18 | KBUILD_CFLAGS += -m64 -pipe -mno-fpu -mcpu=ultrasparc -mcmodel=medlow \ |
| 19 | -ffixed-g4 -ffixed-g5 -fcall-used-g7 -Wno-sign-compare \ |
| 20 | -Wa,--undeclared-regs |
David S. Miller | 966d905 | 2008-02-14 00:58:44 -0800 | [diff] [blame] | 21 | KBUILD_CFLAGS += $(call cc-option,-mtune=ultrasparc3) |
David S. Miller | 54cd6dd | 2008-02-14 00:37:21 -0800 | [diff] [blame] | 22 | KBUILD_AFLAGS += -m64 -mcpu=ultrasparc -Wa,--undeclared-regs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | ifeq ($(CONFIG_MCOUNT),y) |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 25 | KBUILD_CFLAGS += -pg |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | endif |
| 27 | |
| 28 | head-y := arch/sparc64/kernel/head.o arch/sparc64/kernel/init_task.o |
| 29 | |
| 30 | core-y += arch/sparc64/kernel/ arch/sparc64/mm/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | core-y += arch/sparc64/math-emu/ |
| 32 | libs-y += arch/sparc64/prom/ arch/sparc64/lib/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | drivers-$(CONFIG_OPROFILE) += arch/sparc64/oprofile/ |
| 34 | |
| 35 | boot := arch/sparc64/boot |
| 36 | |
| 37 | image tftpboot.img vmlinux.aout: vmlinux |
| 38 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 39 | |
| 40 | archclean: |
| 41 | $(Q)$(MAKE) $(clean)=$(boot) |
| 42 | |
| 43 | define archhelp |
| 44 | echo '* vmlinux - Standard sparc64 kernel' |
| 45 | echo ' vmlinux.aout - a.out kernel for sparc64' |
| 46 | echo ' tftpboot.img - Image prepared for tftp' |
| 47 | endef |
| 48 | |