diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 1999-03-13 12:36:50 +0000 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 1999-03-13 12:36:50 +0000 |
commit | 7b2037ffa9bf8e4b6c9364a1af6a88ce81b390c8 (patch) | |
tree | 3a4c734af572d17f4d64c99a7092e2cb5eaef9a5 /arch/mips/boot/Makefile | |
parent | f02f774aaa8e21f2bc841fe136b0abd9036220bb (diff) |
added addinitrd, a utility to generate kernels combined with a initrd image
Diffstat (limited to 'arch/mips/boot/Makefile')
-rw-r--r-- | arch/mips/boot/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/arch/mips/boot/Makefile b/arch/mips/boot/Makefile index 64a242a38..65217c2c5 100644 --- a/arch/mips/boot/Makefile +++ b/arch/mips/boot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1999/02/25 21:44:46 tsbogend Exp $ +# $Id: Makefile,v 1.7 1999/03/09 21:33:21 tsbogend Exp $ # # 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 @@ -21,15 +21,17 @@ OBJS = milo.o a.out.o drop-sections = .reginfo .mdebug strip-flags = $(addprefix --remove-section=,$(drop-sections)) -# -# Fake compressed boot -# +all: vmlinux.ecoff addinitrd + vmlinux.ecoff: $(CONFIGURE) elf2ecoff $(TOPDIR)/vmlinux ./elf2ecoff $(TOPDIR)/vmlinux vmlinux.ecoff elf2ecoff: elf2ecoff.c $(HOSTCC) -o $@ $^ +addinitrd: addinitrd.c + $(HOSTCC) -o $@ $^ + # Don't build dependencies, this may die if $(CC) isn't gcc dep: |