]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/sparc64/Makefile
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6
[mirror_ubuntu-artful-kernel.git] / arch / sparc64 / Makefile
CommitLineData
1da177e4
LT
1# $Id: Makefile,v 1.52 2002/02/09 19:49:31 davem Exp $
2# sparc64/Makefile
3#
4# Makefile for the architecture dependent flags and dependencies on the
5# 64-bit Sparc.
6#
7# Copyright (C) 1996,1998 David S. Miller (davem@caip.rutgers.edu)
8# Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz)
9#
10
11CHECKFLAGS += -D__sparc__ -D__sparc_v9__ -m64
12
13CPPFLAGS_vmlinux.lds += -Usparc
14
1da177e4 15LDFLAGS := -m elf64_sparc
1da177e4 16
54cd6dde
DM
17KBUILD_CFLAGS += -m64 -pipe -mno-fpu -mcpu=ultrasparc -mcmodel=medlow \
18 -ffixed-g4 -ffixed-g5 -fcall-used-g7 -Wno-sign-compare \
19 -Wa,--undeclared-regs
966d9056 20KBUILD_CFLAGS += $(call cc-option,-mtune=ultrasparc3)
54cd6dde 21KBUILD_AFLAGS += -m64 -mcpu=ultrasparc -Wa,--undeclared-regs
1da177e4 22
1da177e4 23ifeq ($(CONFIG_MCOUNT),y)
a0f97e06 24 KBUILD_CFLAGS += -pg
1da177e4
LT
25endif
26
27head-y := arch/sparc64/kernel/head.o arch/sparc64/kernel/init_task.o
28
29core-y += arch/sparc64/kernel/ arch/sparc64/mm/
1da177e4
LT
30core-y += arch/sparc64/math-emu/
31libs-y += arch/sparc64/prom/ arch/sparc64/lib/
1da177e4
LT
32drivers-$(CONFIG_OPROFILE) += arch/sparc64/oprofile/
33
34boot := arch/sparc64/boot
35
36image tftpboot.img vmlinux.aout: vmlinux
37 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
38
39archclean:
40 $(Q)$(MAKE) $(clean)=$(boot)
41
42define archhelp
43 echo '* vmlinux - Standard sparc64 kernel'
44 echo ' vmlinux.aout - a.out kernel for sparc64'
45 echo ' tftpboot.img - Image prepared for tftp'
46endef
47