diff options
Diffstat (limited to 'sys/arch/mvme88k/stand/bootxx/Makefile')
-rw-r--r-- | sys/arch/mvme88k/stand/bootxx/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/arch/mvme88k/stand/bootxx/Makefile b/sys/arch/mvme88k/stand/bootxx/Makefile index 7a944c54b8f..70d139447f2 100644 --- a/sys/arch/mvme88k/stand/bootxx/Makefile +++ b/sys/arch/mvme88k/stand/bootxx/Makefile @@ -1,10 +1,8 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.5 1999/09/27 19:29:59 smurph Exp $ - -RELOC=0x1F0000 +# $OpenBSD: Makefile,v 1.6 2001/01/13 05:19:01 smurph Exp $ S= ${.CURDIR}/../../../.. -DEFS= +DEFS=-DSTAGE2_RELOC=${STAGE2_RELOC} INCPATH=-I${.CURDIR} -I${.CURDIR}/../libsa -I${.CURDIR}/../libbug \ -I${.CURDIR}/../../include -I${S} -I${S}/lib/libsa CFLAGS=-O0 ${INCPATH} ${DEFS} ${COPTS} @@ -26,8 +24,8 @@ ALL= ${BOOTS} all: ${ALL} -bootxx: ${OBJS} ${BUGCRT} ${LIBS} - ${LD} -N -T ${RELOC} ${BUGCRT} ${OBJS} ${LIBS} -o $@ +bootxx: ${OBJS} ${STAGE1} ${LIBS} + ${LD} -N -T ${STAGE1_RELOC} ${STAGE1} ${OBJS} ${LIBS} -o $@ install: install -c -m 555 -g bin -o bin ${BOOTS} ${DESTDIR}${MDEC_DIR} |