summaryrefslogtreecommitdiff
path: root/sys/arch/mvme68k/stand/bootst
diff options
context:
space:
mode:
authorgvf <gvf@cvs.openbsd.org>1997-04-22 16:13:45 +0000
committergvf <gvf@cvs.openbsd.org>1997-04-22 16:13:45 +0000
commitc63fa9deb9fc036204693490aa76ad7c3ab3544e (patch)
treef6e7977c00a4b96834b95d496bd683dcbf4b07b6 /sys/arch/mvme68k/stand/bootst
parentc7551148578b8fc01810a4d1a385fe8881f522fa (diff)
Add libz and tick version # to reflect change.
Diffstat (limited to 'sys/arch/mvme68k/stand/bootst')
-rw-r--r--sys/arch/mvme68k/stand/bootst/Makefile15
-rw-r--r--sys/arch/mvme68k/stand/bootst/version.c6
2 files changed, 11 insertions, 10 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
diff --git a/sys/arch/mvme68k/stand/bootst/version.c b/sys/arch/mvme68k/stand/bootst/version.c
index f773431d435..63e22d21e7b 100644
--- a/sys/arch/mvme68k/stand/bootst/version.c
+++ b/sys/arch/mvme68k/stand/bootst/version.c
@@ -1,8 +1,8 @@
-/* $OpenBSD: version.c,v 1.2 1996/05/29 15:41:02 chuck Exp $ */
+/* $OpenBSD: version.c,v 1.3 1997/04/22 16:13:40 gvf Exp $ */
/*
* make a random change to this file when you want the bootblock
- * revision to increase. like change this x to a q, or something.
+ * revision to increase. like change this q to an x, or something.
*/
-char *version = "$Revision: 1.2 $";
+char *version = "$Revision: 1.3 $";