Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/distrib STRIP -> STRIPPROG
details: https://anonhg.NetBSD.org/src/rev/2d013b935c07
branches: trunk
changeset: 480772:2d013b935c07
user: tsutsui <tsutsui%NetBSD.org@localhost>
date: Wed Jan 19 16:40:10 2000 +0000
description:
STRIP -> STRIPPROG
diffstat:
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(-)
diffs (131 lines):
diff -r 9bc828648ae6 -r 2d013b935c07 distrib/alpha/floppy-GENERIC/Makefile
--- a/distrib/alpha/floppy-GENERIC/Makefile Wed Jan 19 16:29:54 2000 +0000
+++ b/distrib/alpha/floppy-GENERIC/Makefile Wed Jan 19 16:40:10 2000 +0000
@@ -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_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 @@
${GZKERNEL}: ${KERNEL}
cp ${KERNEL} ${.TARGET}
- ${STRIP} ${.TARGET}
+ ${STRIPPROG} ${.TARGET}
gzip -9 ${.TARGET}
mv ${.TARGET}.gz ${.TARGET}
diff -r 9bc828648ae6 -r 2d013b935c07 distrib/alpha/instkernel/instkernel/Makefile
--- a/distrib/alpha/instkernel/instkernel/Makefile Wed Jan 19 16:29:54 2000 +0000
+++ b/distrib/alpha/instkernel/instkernel/Makefile Wed Jan 19 16:40:10 2000 +0000
@@ -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 -r 9bc828648ae6 -r 2d013b935c07 distrib/i386/floppies/bootfloppy-common/Makefile.inc
--- a/distrib/i386/floppies/bootfloppy-common/Makefile.inc Wed Jan 19 16:29:54 2000 +0000
+++ b/distrib/i386/floppies/bootfloppy-common/Makefile.inc Wed Jan 19 16:40:10 2000 +0000
@@ -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 @@
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 @@
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 -r 9bc828648ae6 -r 2d013b935c07 distrib/i386/floppies/fdset-common/Makefile.inc
--- a/distrib/i386/floppies/fdset-common/Makefile.inc Wed Jan 19 16:29:54 2000 +0000
+++ b/distrib/i386/floppies/fdset-common/Makefile.inc Wed Jan 19 16:40:10 2000 +0000
@@ -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 @@
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 @@
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 -r 9bc828648ae6 -r 2d013b935c07 distrib/vax/miniroot/Makefile
--- a/distrib/vax/miniroot/Makefile Wed Jan 19 16:29:54 2000 +0000
+++ b/distrib/vax/miniroot/Makefile Wed Jan 19 16:40:10 2000 +0000
@@ -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 @@
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 @@
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}
Home |
Main Index |
Thread Index |
Old Index