diff options
author | gvf <gvf@cvs.openbsd.org> | 1997-04-22 16:13:45 +0000 |
---|---|---|
committer | gvf <gvf@cvs.openbsd.org> | 1997-04-22 16:13:45 +0000 |
commit | c63fa9deb9fc036204693490aa76ad7c3ab3544e (patch) | |
tree | f6e7977c00a4b96834b95d496bd683dcbf4b07b6 /sys/arch/mvme68k/stand/bootst/Makefile | |
parent | c7551148578b8fc01810a4d1a385fe8881f522fa (diff) |
Add libz and tick version # to reflect change.
Diffstat (limited to 'sys/arch/mvme68k/stand/bootst/Makefile')
-rw-r--r-- | sys/arch/mvme68k/stand/bootst/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sys/arch/mvme68k/stand/bootst/Makefile b/sys/arch/mvme68k/stand/bootst/Makefile index 46103e215f9..c8cb9255745 100644 --- a/sys/arch/mvme68k/stand/bootst/Makefile +++ b/sys/arch/mvme68k/stand/bootst/Makefile @@ -1,7 +1,8 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.7 1996/05/28 15:15:39 chuck Exp $ +# $OpenBSD: Makefile,v 1.8 1997/04/22 16:13:40 gvf Exp $ RELOC=0x3F0000 +SIZE?= size S= ${.CURDIR}/../../../.. DEFS= @@ -10,15 +11,15 @@ INCPATH=-I${.CURDIR} -I${.CURDIR}/../libsa -I${.CURDIR}/../libbug \ CFLAGS= -O2 ${INCPATH} ${DEFS} ${COPTS} CLEANFILES+=stboot bootst bootst.bug -.include "${S}/arch/${MACHINE}/stand/libsa/Makefile.inc" -.include "${S}/arch/${MACHINE}/stand/libbug/Makefile.inc" -.include "${S}/arch/${MACHINE}/stand/bugcrt/Makefile.inc" .include "${S}/arch/${MACHINE}/stand/wrtvid/Makefile.inc" +.include "${S}/arch/${MACHINE}/stand/bugcrt/Makefile.inc" +.include "${S}/arch/${MACHINE}/stand/libbug/Makefile.inc" +.include "${S}/arch/${MACHINE}/stand/libsa/Makefile.inc" +.include "${S}/arch/${MACHINE}/stand/libz/Makefile.inc" SRCS= boot.c conf.c dev_tape.c rawfs.c version.c - -LIBS= ${LIBSA} ${LIBBUG} +LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} OBJS= ${SRCS:N*.h:R:S/$/.o/g} @@ -29,7 +30,7 @@ all: ${ALL} bootst.bug: ${OBJS} ${BUGCRT} ${LIBS} ${LD} -s -N -T ${RELOC} ${BUGCRT} ${OBJS} ${LIBS} -o $@ - @size bootst.bug + @${SIZE} bootst.bug bootst stboot: bootst.bug ${WRTVID} ${WRTVID} bootst.bug |