Makefile (c5951e7c8ee5cb04b8b41c32bf567b90117a2124) Makefile (5f2fb52fac15a8a8e10ce020dd532504a8abfc4e)
1#
2# This file is subject to the terms and conditions of the GNU General Public
3# License. See the file "COPYING" in the main directory of this archive
4# for more details.
5#
6# Copyright (C) 1995, 1998, 2001, 2002 by Ralf Baechle
7# Copyright (C) 2004 Maciej W. Rozycki
8#

--- 7 unchanged lines hidden (view full) ---

16
17#
18# Drop some uninteresting sections in the kernel.
19# This is only relevant for ELF kernels but doesn't hurt a.out
20#
21drop-sections := .reginfo .mdebug .comment .note .pdr .options .MIPS.options
22strip-flags := $(addprefix --remove-section=,$(drop-sections))
23
1#
2# This file is subject to the terms and conditions of the GNU General Public
3# License. See the file "COPYING" in the main directory of this archive
4# for more details.
5#
6# Copyright (C) 1995, 1998, 2001, 2002 by Ralf Baechle
7# Copyright (C) 2004 Maciej W. Rozycki
8#

--- 7 unchanged lines hidden (view full) ---

16
17#
18# Drop some uninteresting sections in the kernel.
19# This is only relevant for ELF kernels but doesn't hurt a.out
20#
21drop-sections := .reginfo .mdebug .comment .note .pdr .options .MIPS.options
22strip-flags := $(addprefix --remove-section=,$(drop-sections))
23
24hostprogs-y := elf2ecoff
24hostprogs := elf2ecoff
25
26suffix-y := bin
27suffix-$(CONFIG_KERNEL_BZIP2) := bz2
28suffix-$(CONFIG_KERNEL_GZIP) := gz
29suffix-$(CONFIG_KERNEL_LZMA) := lzma
30suffix-$(CONFIG_KERNEL_LZO) := lzo
31
32targets := vmlinux.ecoff

--- 141 unchanged lines hidden ---
25
26suffix-y := bin
27suffix-$(CONFIG_KERNEL_BZIP2) := bz2
28suffix-$(CONFIG_KERNEL_GZIP) := gz
29suffix-$(CONFIG_KERNEL_LZMA) := lzma
30suffix-$(CONFIG_KERNEL_LZO) := lzo
31
32targets := vmlinux.ecoff

--- 141 unchanged lines hidden ---