2005-04-16 15:20:36 -07:00
#
# parisc/Makefile
#
# This file is included by the global makefile so that you can add your own
# architecture-specific flags and dependencies. Remember to do have actions
# for "archclean" and "archdep" for cleaning up and making dependencies for
# this architecture
#
# This file is subject to the terms and conditions of the GNU General Public
# License. See the file "COPYING" in the main directory of this archive
# for more details.
#
# Copyright (C) 1994 by Linus Torvalds
# Portions Copyright (C) 1999 The Puffin Group
#
# Modified for PA-RISC Linux by Paul Lahaie, Alex deVries,
# Mike Shaver, Helge Deller and Martin K. Petersen
#
NM = sh $( srctree) /arch/parisc/nm
CHECKFLAGS += -D__hppa__= 1
i f d e f C O N F I G _ 6 4 B I T
2005-10-21 22:52:00 -04:00
CROSS_COMPILE := $( shell if [ -x /usr/bin/hppa64-linux-gnu-gcc ] ; then \
echo hppa64-linux-gnu-; else echo hppa64-linux-; fi )
2005-04-16 15:20:36 -07:00
UTS_MACHINE := parisc64
CHECKFLAGS += -D__LP64__= 1 -m64
e l s e
MACHINE := $( subst 64,,$( shell uname -m) )
i f n e q ( $( MACHINE ) , p a r i s c )
CROSS_COMPILE := hppa-linux-
e n d i f
e n d i f
FINAL_LD = $( CROSS_COMPILE) ld --warn-common --warn-section-align
OBJCOPY_FLAGS = -O binary -R .note -R .comment -S
2006-12-01 10:06:39 -08:00
i f n e q ( $( call cc -ifversion , -lt , 0303, "bad ") , )
$( error Sorry , GCC v 3.3 or above is required .)
2005-10-21 22:52:00 -04:00
e n d i f
2005-04-16 15:20:36 -07:00
cflags-y := -pipe
# These flags should be implied by an hppa-linux configuration, but they
# are not in gcc 3.2.
cflags-y += -mno-space-regs -mfast-indirect-calls
# Currently we save and restore fpregs on all kernel entry/interruption paths.
# If that gets optimized, we might need to disable the use of fpregs in the
# kernel.
2005-10-21 22:48:34 -04:00
cflags-y += -mdisable-fpregs
2005-04-16 15:20:36 -07:00
# Without this, "ld -r" results in .text sections that are too big
# (> 0x40000) for branches to reach stubs.
cflags-y += -ffunction-sections
# select which processor to optimise for
cflags-$(CONFIG_PA7100) += -march= 1.1 -mschedule= 7100
cflags-$(CONFIG_PA7200) += -march= 1.1 -mschedule= 7200
cflags-$(CONFIG_PA7100LC) += -march= 1.1 -mschedule= 7100LC
cflags-$(CONFIG_PA7300LC) += -march= 1.1 -mschedule= 7300
cflags-$(CONFIG_PA8X00) += -march= 2.0 -mschedule= 8000
head-y := arch/parisc/kernel/head.o
CFLAGS += $( cflags-y)
kernel-y := mm/ kernel/ math-emu/ kernel/init_task.o
kernel-$(CONFIG_HPUX) += hpux/
core-y += $( addprefix arch/parisc/, $( kernel-y) )
libs-y += arch/parisc/lib/ ` $( CC) -print-libgcc-file-name`
drivers-$(CONFIG_OPROFILE) += arch/parisc/oprofile/
PALO := $( shell if which palo; then : ; \
elif [ -x /sbin/palo ] ; then echo /sbin/palo; \
fi )
palo : vmlinux
@if [ -x $PALO ] ; then \
echo 'ERROR: Please install palo first (apt-get install palo)' ; \
echo 'or build it from source and install it somewhere in your $$PATH' ; \
false; \
fi
@if [ ! -f ./palo.conf ] ; then \
cp arch/parisc/defpalo.conf palo.conf; \
echo 'A generic palo config file (./palo.conf) has been created for you.' ; \
echo 'You should check it and re-run "make palo".' ; \
echo 'WARNING: the "lifimage" file is now placed in this directory by default!' ; \
false; \
fi
$( PALO) -f ./palo.conf
oldpalo : vmlinux
export TOPDIR = ` pwd ` ; \
unset STRIP LDFLAGS CPP CPPFLAGS AFLAGS CFLAGS CC LD; cd ../palo && make lifimage
# Shorthands for known targets not supported by parisc, use palo as default
Image zImage bzImage : palo
kernel_install : vmlinux
sh $( src) /arch/parisc/install.sh \
$( KERNELRELEASE) $< System.map " $( INSTALL_PATH) "
install : kernel_install modules_install
2005-09-09 20:57:26 +02:00
CLEAN_FILES += lifimage
2005-04-16 15:20:36 -07:00
MRPROPER_FILES += palo.conf
d e f i n e a r c h h e l p
@echo '* vmlinux - Uncompressed kernel image (./vmlinux)'
@echo ' palo - Bootable image (./lifimage)'
@echo ' install - Install kernel using'
@echo ' (your) ~/bin/installkernel or'
@echo ' (distribution) /sbin/installkernel or'
@echo ' copy to $$(INSTALL_PATH)'
e n d e f