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/bootxx | |
parent | c7551148578b8fc01810a4d1a385fe8881f522fa (diff) |
Add libz and tick version # to reflect change.
Diffstat (limited to 'sys/arch/mvme68k/stand/bootxx')
-rw-r--r-- | sys/arch/mvme68k/stand/bootxx/Makefile | 5 | ||||
-rw-r--r-- | sys/arch/mvme68k/stand/bootxx/version.c | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/sys/arch/mvme68k/stand/bootxx/Makefile b/sys/arch/mvme68k/stand/bootxx/Makefile index a45f3993b83..fe881a90d3a 100644 --- a/sys/arch/mvme68k/stand/bootxx/Makefile +++ b/sys/arch/mvme68k/stand/bootxx/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/10/93 -# $OpenBSD: Makefile,v 1.1 1996/05/16 02:37:25 chuck Exp $ +# $OpenBSD: Makefile,v 1.2 1997/04/22 16:13:41 gvf Exp $ RELOC=0x3F0000 @@ -13,10 +13,11 @@ CLEANFILES+=bootxx .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= bootxx.c conf.c version.c -LIBS= ${LIBSA} ${LIBBUG} +LIBS= ${LIBSA} ${LIBBUG} ${LIBZ} OBJS= ${SRCS:N*.h:R:S/$/.o/g} diff --git a/sys/arch/mvme68k/stand/bootxx/version.c b/sys/arch/mvme68k/stand/bootxx/version.c index c68e44a5350..b02c2e17bd2 100644 --- a/sys/arch/mvme68k/stand/bootxx/version.c +++ b/sys/arch/mvme68k/stand/bootxx/version.c @@ -1,8 +1,8 @@ -/* $OpenBSD: version.c,v 1.1 1996/05/16 02:37:26 chuck Exp $ */ +/* $OpenBSD: version.c,v 1.2 1997/04/22 16:13:41 gvf Exp $ */ /* * make a random change to this file when you want the bootblock - * revision to increase. like change this x to a y, or something. + * revision to increase. like change this y to an x, or something. */ -char *version = "$Revision: 1.1 $"; +char *version = "$Revision: 1.2 $"; |