GNU Linux-libre 4.14.328-gnu1
[releases.git] / arch / parisc / Makefile
1 #
2 # parisc/Makefile
3 #
4 # This file is included by the global makefile so that you can add your own
5 # architecture-specific flags and dependencies. Remember to do have actions
6 # for "archclean" and "archdep" for cleaning up and making dependencies for
7 # this architecture
8 #
9 # This file is subject to the terms and conditions of the GNU General Public
10 # License.  See the file "COPYING" in the main directory of this archive
11 # for more details.
12 #
13 # Copyright (C) 1994 by Linus Torvalds
14 # Portions Copyright (C) 1999 The Puffin Group
15 #
16 # Modified for PA-RISC Linux by Paul Lahaie, Alex deVries, 
17 # Mike Shaver, Helge Deller and Martin K. Petersen
18 #
19
20 ifdef CONFIG_PARISC_SELF_EXTRACT
21 boot := arch/parisc/boot
22 KBUILD_IMAGE := $(boot)/bzImage
23 else
24 KBUILD_IMAGE := vmlinuz
25 endif
26
27 KBUILD_DEFCONFIG := default_defconfig
28
29 NM              = sh $(srctree)/arch/parisc/nm
30 CHECKFLAGS      += -D__hppa__=1
31 LIBGCC          = $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
32 export LIBGCC
33
34 ifdef CONFIG_64BIT
35 UTS_MACHINE     := parisc64
36 CHECKFLAGS      += -D__LP64__=1 -m64
37 CC_ARCHES       = hppa64
38 LD_BFD          := elf64-hppa-linux
39 else # 32-bit
40 CC_ARCHES       = hppa hppa2.0 hppa1.1
41 LD_BFD          := elf32-hppa-linux
42 endif
43
44 export LD_BFD
45
46 ifneq ($(SUBARCH),$(UTS_MACHINE))
47         ifeq ($(CROSS_COMPILE),)
48                 CC_SUFFIXES = linux linux-gnu unknown-linux-gnu
49                 CROSS_COMPILE := $(call cc-cross-prefix, \
50                         $(foreach a,$(CC_ARCHES), \
51                         $(foreach s,$(CC_SUFFIXES),$(a)-$(s)-)))
52         endif
53 endif
54
55 OBJCOPY_FLAGS =-O binary -R .note -R .comment -S
56
57 cflags-y        := -pipe
58
59 # These flags should be implied by an hppa-linux configuration, but they
60 # are not in gcc 3.2.
61 cflags-y        += -mno-space-regs
62
63 # -mfast-indirect-calls is only relevant for 32-bit kernels.
64 ifndef CONFIG_64BIT
65 cflags-y        += -mfast-indirect-calls
66 endif
67
68 # Currently we save and restore fpregs on all kernel entry/interruption paths.
69 # If that gets optimized, we might need to disable the use of fpregs in the
70 # kernel.
71 cflags-y        += -mdisable-fpregs
72
73 # Without this, "ld -r" results in .text sections that are too big
74 # (> 0x40000) for branches to reach stubs.
75 cflags-y        += -ffunction-sections
76
77 # Use long jumps instead of long branches (needed if your linker fails to
78 # link a too big vmlinux executable). Not enabled for building modules.
79 ifdef CONFIG_MLONGCALLS
80 KBUILD_CFLAGS_KERNEL += -mlong-calls
81 endif
82
83 # select which processor to optimise for
84 cflags-$(CONFIG_PA7000)         += -march=1.1 -mschedule=7100
85 cflags-$(CONFIG_PA7200)         += -march=1.1 -mschedule=7200
86 cflags-$(CONFIG_PA7100LC)       += -march=1.1 -mschedule=7100LC
87 cflags-$(CONFIG_PA7300LC)       += -march=1.1 -mschedule=7300
88 cflags-$(CONFIG_PA8X00)         += -march=2.0 -mschedule=8000
89
90 head-y                  := arch/parisc/kernel/head.o 
91
92 KBUILD_CFLAGS   += $(cflags-y)
93
94 kernel-y                        := mm/ kernel/ math-emu/
95
96 core-y  += $(addprefix arch/parisc/, $(kernel-y))
97 libs-y  += arch/parisc/lib/ $(LIBGCC)
98
99 drivers-$(CONFIG_OPROFILE)              += arch/parisc/oprofile/
100
101 boot    := arch/parisc/boot
102
103 PALO := $(shell if (which palo 2>&1); then : ; \
104         elif [ -x /sbin/palo ]; then echo /sbin/palo; \
105         fi)
106
107 PALOCONF := $(shell if [ -f $(src)/palo.conf ]; then echo $(src)/palo.conf; \
108         else echo $(obj)/palo.conf; \
109         fi)
110
111 palo lifimage: vmlinuz
112         @if test ! -x "$(PALO)"; then \
113                 echo 'ERROR: Please install palo first (apt-get install palo)';\
114                 echo 'or build it from source and install it somewhere in your $$PATH';\
115                 false; \
116         fi
117         @if test ! -f "$(PALOCONF)"; then \
118                 cp $(src)/arch/parisc/defpalo.conf $(obj)/palo.conf; \
119                 echo 'A generic palo config file ($(obj)/palo.conf) has been created for you.'; \
120                 echo 'You should check it and re-run "make palo".'; \
121                 echo 'WARNING: the "lifimage" file is now placed in this directory by default!'; \
122                 false; \
123         fi
124         $(PALO) -f $(PALOCONF)
125
126 BOOT_TARGETS    = zImage Image palo lifimage
127 INSTALL_TARGETS = zinstall install
128
129 PHONY += bzImage $(BOOT_TARGETS) $(INSTALL_TARGETS)
130
131 zImage: vmlinuz
132 Image: vmlinux
133
134 bzImage: vmlinux
135         $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
136
137 ifdef CONFIG_PARISC_SELF_EXTRACT
138 vmlinuz: bzImage
139         $(OBJCOPY) $(boot)/bzImage $@
140 else
141 vmlinuz: vmlinux
142         @gzip -cf -9 $< > $@
143 endif
144
145 install:
146         $(CONFIG_SHELL) $(src)/arch/parisc/install.sh \
147                         $(KERNELRELEASE) vmlinux System.map "$(INSTALL_PATH)"
148 zinstall:
149         $(CONFIG_SHELL) $(src)/arch/parisc/install.sh \
150                         $(KERNELRELEASE) vmlinuz System.map "$(INSTALL_PATH)"
151
152 CLEAN_FILES     += lifimage
153 MRPROPER_FILES  += palo.conf
154
155 define archhelp
156         @echo  '* vmlinux       - Uncompressed kernel image (./vmlinux)'
157         @echo  '  vmlinuz       - Compressed kernel image (./vmlinuz)'
158         @echo  '  palo          - Bootable image (./lifimage)'
159         @echo  '  install       - Install uncompressed vmlinux kernel using'
160         @echo  '                  (your) ~/bin/$(INSTALLKERNEL) or'
161         @echo  '                  (distribution) /sbin/$(INSTALLKERNEL) or'
162         @echo  '                  copy to $$(INSTALL_PATH)'
163         @echo  '  zinstall      - Install compressed vmlinuz kernel'
164 endef
165
166 # we require gcc 3.3 or above to compile the kernel
167 archprepare: checkbin
168 checkbin:
169         @if test "$(cc-version)" -lt "0303"; then \
170                 echo -n "Sorry, GCC v3.3 or above is required to build " ; \
171                 echo "the kernel." ; \
172                 false ; \
173         fi