diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-12-19 00:28:55 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-12-19 00:28:55 +0000 |
commit | d5ec4fd6eae03420b9c14b983f62a24538436868 (patch) | |
tree | 8e053ee0ec8cee2f7501e850689ed18727cd412b /sys | |
parent | bcf8f1fe41d681a68d70f0edb65f976bd6126ed7 (diff) |
do not plan for DISKLESS; cross out CRTBEGIN and CRTEND
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa/stand/boot/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/sys/arch/hppa/stand/boot/Makefile b/sys/arch/hppa/stand/boot/Makefile index d2fad324fb4..f544c943ee2 100644 --- a/sys/arch/hppa/stand/boot/Makefile +++ b/sys/arch/hppa/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2002/12/18 14:06:05 miod Exp $ +# $OpenBSD: Makefile,v 1.14 2002/12/19 00:28:54 mickey Exp $ MAN= boot.8 MANSUBDIR=/hppa @@ -15,6 +15,8 @@ LDFLAGS+=-T ${.CURDIR}/ld.script -Map boot.map SIZE?= size STRIP?= strip SADIR= ${.CURDIR}/.. +CRTBEGIN= +CRTEND= LDADD= ${LIBSA} ${LIBZ} ${LIBKERN} DPADD= ${LIBSA} ${LIBZ} ${LIBKERN} @@ -23,12 +25,6 @@ DPADD= ${LIBSA} ${LIBZ} ${LIBKERN} all: boot.lif -#.if exists(${.CURDIR}/../../compile/DISKLESS/bsd) -#bsd: ${.CURDIR}/../../compile/DISKLESS/bsd -# gzip -9 -c ${.CURDIR}/../../compile/DISKLESS/bsd > bsd -#ADDBOOT+=bsd -#.endif - .if exists(${.CURDIR}/../../compile/GENERIC/bsd) bsd: ${.CURDIR}/../../compile/GENERIC/bsd gzip -9 -c ${.CURDIR}/../../compile/GENERIC/bsd > bsd |