From 4ef994a10e1c2aadedfb38e3fbed4fb33ebd4689 Mon Sep 17 00:00:00 2001 From: scw Date: Wed, 10 Apr 2002 18:56:37 +0000 Subject: [PATCH] Don't bother making/installing the kernel symbol table. --- distrib/mvme68k/instkernel/Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/distrib/mvme68k/instkernel/Makefile b/distrib/mvme68k/instkernel/Makefile index b7787b93972e..e5c9107b7387 100644 --- a/distrib/mvme68k/instkernel/Makefile +++ b/distrib/mvme68k/instkernel/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2002/03/24 18:08:19 scw Exp $ +# $NetBSD: Makefile,v 1.2 2002/04/10 18:56:37 scw Exp $ .include "${.CURDIR}/../../Makefile.inc" .include @@ -22,13 +22,11 @@ TARGETS= RAMDISK ${RAMDISK} .for K R in ${TARGETS} KERNELS+= netbsd.${K}.gz -KERNELSYMS+= netbsd.${K}.symbols -CLEANFILES+= netbsd.${K}.gz netbsd.${K}.symbols +CLEANFILES+= netbsd.${K}.gz netbsd.${K}.gz: .NOTMAIN ${KERNOBJDIR}/${K}/netbsd ${R} @echo "Populating ${.TARGET} with ${R}" cp ${KERNOBJDIR}/${K}/netbsd netbsd.tmp ${MDSETIMAGE} -v netbsd.tmp ${R} - ${NM} netbsd.tmp > netbsd.${K}.symbols ${STRIP} netbsd.tmp gzip -9 netbsd.tmp mv netbsd.tmp.gz ${.TARGET} @@ -40,6 +38,6 @@ all: ${KERNELS} release: -mkdir -p ${RELEASEDIR}/installation/tapeimage - cp -p ${KERNELS} ${KERNELSYMS} ${RELEASEDIR}/installation/tapeimage + cp -p ${KERNELS} ${RELEASEDIR}/installation/tapeimage .include