From bdfb1f79c91e366792361ca6151f736cbd2e1c73 Mon Sep 17 00:00:00 2001 From: tsutsui Date: Wed, 19 Jan 2000 16:40:10 +0000 Subject: [PATCH] STRIP -> STRIPPROG --- distrib/alpha/floppy-GENERIC/Makefile | 6 +++--- distrib/alpha/instkernel/instkernel/Makefile | 6 +++--- distrib/i386/floppies/bootfloppy-common/Makefile.inc | 6 +++--- distrib/i386/floppies/fdset-common/Makefile.inc | 6 +++--- distrib/vax/miniroot/Makefile | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/distrib/alpha/floppy-GENERIC/Makefile b/distrib/alpha/floppy-GENERIC/Makefile index dd6753af0f5a..ecafa24a6d69 100644 --- a/distrib/alpha/floppy-GENERIC/Makefile +++ b/distrib/alpha/floppy-GENERIC/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 1999/09/10 07:43:00 ross Exp $ +# $NetBSD: Makefile,v 1.9 2000/01/19 16:40:10 tsutsui Exp $ MOUNT_POINT?= /mnt VND?= vnd0 @@ -8,7 +8,7 @@ VND_CDEV= /dev/${VND}c VND_CRDEV= /dev/r${VND}c MDEC?= ${DESTDIR}/usr/mdec KERNEL?= ${.CURDIR}/../../../sys/arch/alpha/compile/GENERIC/netbsd -STRIP?= strip +STRIPPROG?= strip GZKERNEL= netbsd IMAGE= GENERIC.fs @@ -41,7 +41,7 @@ GENERIC.fs: ${GZKERNEL} ${MDEC}/boot ${MDEC}/bootxx.old ${GZKERNEL}: ${KERNEL} cp ${KERNEL} ${.TARGET} - ${STRIP} ${.TARGET} + ${STRIPPROG} ${.TARGET} gzip -9 ${.TARGET} mv ${.TARGET}.gz ${.TARGET} diff --git a/distrib/alpha/instkernel/instkernel/Makefile b/distrib/alpha/instkernel/instkernel/Makefile index 52bad6e532fa..55665e6b574c 100644 --- a/distrib/alpha/instkernel/instkernel/Makefile +++ b/distrib/alpha/instkernel/instkernel/Makefile @@ -1,16 +1,16 @@ -# $NetBSD: Makefile,v 1.7 1999/09/02 23:39:43 ross Exp $ +# $NetBSD: Makefile,v 1.8 2000/01/19 16:40:11 tsutsui Exp $ RAMDISK!=cd ${.CURDIR}/../ramdisk; \ printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}/ramdisk.fs\n" | \ ${MAKE} -s -f- KERNEL?=${.CURDIR}/../../../../sys/arch/alpha/compile/INSTALL/netbsd -STRIP?= strip # make STRIP=echo can be useful +STRIPPROG?= strip # make STRIPPROG=echo can be useful all: cp ${KERNEL} netbsd mdsetimage -v netbsd ${RAMDISK} - ${STRIP} netbsd + ${STRIPPROG} netbsd gzip -9f netbsd clean cleandir distclean: diff --git a/distrib/i386/floppies/bootfloppy-common/Makefile.inc b/distrib/i386/floppies/bootfloppy-common/Makefile.inc index bb9c485718ff..3babbc17fd1d 100644 --- a/distrib/i386/floppies/bootfloppy-common/Makefile.inc +++ b/distrib/i386/floppies/bootfloppy-common/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.19 1999/11/09 00:22:40 he Exp $ +# $NetBSD: Makefile.inc,v 1.20 2000/01/19 16:40:11 tsutsui Exp $ # TOP is assumed to be defined by Makefile including this one. @@ -13,7 +13,7 @@ VND_CRDEV= /dev/r${VND}d IMAGE?= xxx.fs KERN?= netbsd-xxx MDEC= ${DESTDIR}/usr/mdec -STRIP?= strip +STRIPPROG?= strip LISTS= ${COMMONDIR}/list RAMDISK !=cd $(.CURDIR)/../ramdisk/; \ @@ -60,7 +60,7 @@ unconfig: netbsd.ram.gz: ${KERN} ${RAMDISK} cp ${KERN} netbsd.tmp ${DESTDIR}/usr/sbin/mdsetimage -v netbsd.tmp ${RAMDISK} - ${STRIP} netbsd.tmp + ${STRIPPROG} netbsd.tmp gzip -9 netbsd.tmp mv netbsd.tmp.gz ${.TARGET} diff --git a/distrib/i386/floppies/fdset-common/Makefile.inc b/distrib/i386/floppies/fdset-common/Makefile.inc index cc39efff8716..8f319f8cab95 100644 --- a/distrib/i386/floppies/fdset-common/Makefile.inc +++ b/distrib/i386/floppies/fdset-common/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.7 1999/11/09 00:22:40 he Exp $ +# $NetBSD: Makefile.inc,v 1.8 2000/01/19 16:40:12 tsutsui Exp $ # TOP is assumed to be defined by Makefile including this one. @@ -15,7 +15,7 @@ FSTMP= ustar.tmp KERN?= netbsd-xxx MDEC= ${DESTDIR}/usr/mdec BOOTCODE= ${MDEC}/biosboot.sym -STRIP?= strip +STRIPPROG?= strip RAMDISK !=cd $(.CURDIR)/../ramdisk/; \ printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}/ramdisk.fs\n" | \ @@ -79,7 +79,7 @@ all: netbsd boot netbsd.ram.gz: ${KERN} ${RAMDISK} cp ${KERN} netbsd.tmp ${DESTDIR}/usr/sbin/mdsetimage -v netbsd.tmp ${RAMDISK} - ${STRIP} netbsd.tmp + ${STRIPPROG} netbsd.tmp gzip -9 netbsd.tmp mv netbsd.tmp.gz ${.TARGET} diff --git a/distrib/vax/miniroot/Makefile b/distrib/vax/miniroot/Makefile index 26184af2f358..d75dd9758514 100644 --- a/distrib/vax/miniroot/Makefile +++ b/distrib/vax/miniroot/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 1999/03/12 18:36:52 ragge Exp $ +# $NetBSD: Makefile,v 1.2 2000/01/19 16:40:12 tsutsui Exp $ # TOP is assumed to be defined by Makefile including this one. @@ -13,7 +13,7 @@ VND_CRDEV= /dev/r${VND}c IMAGE?= miniroot.fs KERN?= ${.CURDIR}/../../../sys/arch/vax/compile/INSTALL/netbsd MDEC= ${DESTDIR}/usr/mdec -STRIP?= strip +STRIPPROG?= strip LISTS= ${.CURDIR}/list RAMDISK !=cd $(.CURDIR)/../ramdisk/; \ @@ -59,7 +59,7 @@ unconfig: netbsd.ram.gz: ${KERN} ${RAMDISK} cp ${KERN} netbsd.tmp mdsetimage -v netbsd.tmp ${RAMDISK} - ${STRIP} netbsd.tmp + ${STRIPPROG} netbsd.tmp gzip netbsd.tmp mv netbsd.tmp.gz ${.TARGET}