Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/alpha/instkernel/instkernel Make the kernel selectab...



details:   https://anonhg.NetBSD.org/src/rev/c3709605778e
branches:  trunk
changeset: 475997:c3709605778e
user:      ross <ross%NetBSD.org@localhost>
date:      Thu Sep 02 23:39:43 1999 +0000

description:
Make the kernel selectable and the strip action optional.

diffstat:

 distrib/alpha/instkernel/instkernel/Makefile |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r f029940d2ef9 -r c3709605778e distrib/alpha/instkernel/instkernel/Makefile
--- a/distrib/alpha/instkernel/instkernel/Makefile      Thu Sep 02 23:33:45 1999 +0000
+++ b/distrib/alpha/instkernel/instkernel/Makefile      Thu Sep 02 23:39:43 1999 +0000
@@ -1,15 +1,16 @@
-#      $NetBSD: Makefile,v 1.6 1999/06/25 22:32:40 nathanw Exp $
+#      $NetBSD: Makefile,v 1.7 1999/09/02 23:39:43 ross 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
+KERNEL?=${.CURDIR}/../../../../sys/arch/alpha/compile/INSTALL/netbsd
+STRIP?=        strip           # make STRIP=echo can be useful
 
 all:
        cp ${KERNEL} netbsd
        mdsetimage -v netbsd ${RAMDISK}
-       strip netbsd
+       ${STRIP} netbsd
        gzip -9f netbsd
 
 clean cleandir distclean:



Home | Main Index | Thread Index | Old Index