summaryrefslogtreecommitdiff
path: root/sys/arch/hp300/stand/Makefile.inc
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1999-08-16 09:43:12 +0000
committerJason Downs <downsj@cvs.openbsd.org>1999-08-16 09:43:12 +0000
commitd179eff9bd4cb760c09a5931364ce2c6dac77ecf (patch)
tree202b2b77f440ffbf0d160763f8993756a1e7153e /sys/arch/hp300/stand/Makefile.inc
parentac1b38ac019548d858278911a2672d18a25d17f5 (diff)
Implement real CD booting, aka SYS_CDBOOT, the LIF file small enough to
fit in the begining of an ISO9660 image...
Diffstat (limited to 'sys/arch/hp300/stand/Makefile.inc')
-rw-r--r--sys/arch/hp300/stand/Makefile.inc15
1 files changed, 14 insertions, 1 deletions
diff --git a/sys/arch/hp300/stand/Makefile.inc b/sys/arch/hp300/stand/Makefile.inc
index e5096129e11..b1b016609d6 100644
--- a/sys/arch/hp300/stand/Makefile.inc
+++ b/sys/arch/hp300/stand/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.2 1997/09/14 12:54:20 downsj Exp $
+# $OpenBSD: Makefile.inc,v 1.3 1999/08/16 09:43:07 downsj Exp $
# $NetBSD: Makefile.inc,v 1.7 1997/05/12 07:43:18 thorpej Exp $
BINDIR= /usr/mdec
@@ -54,6 +54,19 @@ LIBSAOBJDIR= ${LIBSADIR}
LIBSA= ${LIBSAOBJDIR}/libsa.a
+### Figure out what to use for libsaz
+LIBSAZDIR= ${.CURDIR}/../libsaz
+
+.if exists(${LIBSAZDIR}/obj.${MACHINE})
+LIBSAZOBJDIR= ${LIBSAZDIR}/obj.${MACHINE}
+.elif exists(${LIBSAZDIR}/obj)
+LIBSAZOBJDIR= ${LIBSAZDIR}/obj
+.else
+LIBSAZOBJDIR= ${LIBSAZDIR}
+.endif
+
+LIBSAZ= ${LIBSAZOBJDIR}/libsaz.a
+
### Figure out what to use for libz
LIBZDIR= ${.CURDIR}/../libz