diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-03 09:10:29 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-05-03 09:10:29 +0000 |
commit | 595cbd2e050401adf0cab2bab6ce52f902dfbb54 (patch) | |
tree | 8474c159022572bb93d15b7f2c287d1044321bc1 /sys/arch/vax/boot/Makefile | |
parent | 3472e7ae763d3e453e57b218243b6d60ece25b43 (diff) |
sync w/ 0430
Diffstat (limited to 'sys/arch/vax/boot/Makefile')
-rw-r--r-- | sys/arch/vax/boot/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sys/arch/vax/boot/Makefile b/sys/arch/vax/boot/Makefile index f6763596bc0..0078dcd8cfc 100644 --- a/sys/arch/vax/boot/Makefile +++ b/sys/arch/vax/boot/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 1995/12/28 15:27:21 ragge Exp $ +# $NetBSD: Makefile,v 1.9 1996/03/16 11:03:12 ragge Exp $ # INCPATH=-I. -I../../.. -I../.. -I../../../lib/libsa @@ -11,7 +11,7 @@ S= ../../.. RELOC= 100000 CFLAGS+=-O ${INCPATH} -DSTANDALONE -DRELOC=0x${RELOC} -D_VAX_INLINE_ -DEVS= autoconf.o hp.o ra.o tmscp.o +DEVS= autoconf.o hp.o ra.o tmscp.o ctu.o LIBKERN=libkern.a KERNOBJ=__main.o strlen.o strcmp.o strncmp.o strncpy.o min.o strcpy.o @@ -102,6 +102,14 @@ libkern.a: ${KERNOBJ} @ar rv libkern.a `lorder ${KERNOBJ} | tsort` # +install: boot xxboot + install -c -o ${BINOWN} -g ${BINGRP} -m 444 boot ${DESTDIR}/ + install -c -o ${BINOWN} -g ${BINGRP} -m 444 xxboot ${DESTDIR}/usr/mdec + rm -f ${DESTDIR}/usr/mdec/raboot + ln ${DESTDIR}/usr/mdec/xxboot ${DESTDIR}/usr/mdec/raboot + rm -f ${DESTDIR}/usr/mdec/hpboot + ln ${DESTDIR}/usr/mdec/xxboot ${DESTDIR}/usr/mdec/hpboot + clean:: rm -f start.o romread.o bootxx.o init.o xxboot boot racopy \ libsvax.a udiv.o urem.o consio.o ${DEVS} edlabel edlabel.o |