diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-02-06 02:53:52 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-02-06 02:53:52 +0000 |
commit | 9e2c2dbcee4a3ad77a401ec09f3cc6ae4c030520 (patch) | |
tree | 946d5f3173badd338d0fbe89adc362b480bbd747 /sys/arch/hp300/stand/Makefile | |
parent | 05e1e37d0f761e2f1d52faab92541a76551b22fe (diff) |
Enable support for gzip'd kernels.
Diffstat (limited to 'sys/arch/hp300/stand/Makefile')
-rw-r--r-- | sys/arch/hp300/stand/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/arch/hp300/stand/Makefile b/sys/arch/hp300/stand/Makefile index 08e974c9ed9..bd32f6be329 100644 --- a/sys/arch/hp300/stand/Makefile +++ b/sys/arch/hp300/stand/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 1997/02/03 07:19:01 downsj Exp $ +# $OpenBSD: Makefile,v 1.6 1997/02/06 02:53:49 downsj Exp $ # $NetBSD: Makefile,v 1.22 1996/10/18 06:03:25 thorpej Exp $ # @(#)Makefile 8.1 (Berkeley) 6/10/93 @@ -33,10 +33,15 @@ INCPATH=-I${.CURDIR} -I${.CURDIR}/../.. -I${S} -I${S}/lib/libsa .include "${.CURDIR}/libkern/Makefile.inc" LIBKERN= ${KERN_LIB} +### find out what to use for libz +Z_AS= library +.include "${S}/lib/libz/Makefile.inc" +LIBZ= ${ZLIB} + .include "${.CURDIR}/libsa/Makefile.inc" LIBSA= ${SA_LIB} -LIBS= ${OBJS} libdrive.a ${LIBSA} ${LIBKERN} +LIBS= ${OBJS} libdrive.a ${LIBSA} ${LIBZ} ${LIBKERN} BOOTS= uboot.lif inst.lif BOOTAOUTS=uboot inst |