diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-03-12 00:04:58 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-03-12 00:04:58 +0000 |
commit | a64ef287e3bc4ca300b0cdca525c011f4c8dcf35 (patch) | |
tree | 9b7d2a92a0372201003cfc2ac3df316de5aaca75 /sys/dev/microcode/siop/Makefile | |
parent | d57b8b0940d9b2c0bc9222002b7686dcbdb9843d (diff) |
Preliminary port of NetBSD oosiop driver, for NCR53C700 chips, as commonly
encountered on the oldest hppa machines.
Currently compiled in, but disabled, in the kernel, until it is stable
enough - right now read access are fine, but writes eventually time out
and do not complete.
ok deraadt@
Diffstat (limited to 'sys/dev/microcode/siop/Makefile')
-rw-r--r-- | sys/dev/microcode/siop/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/dev/microcode/siop/Makefile b/sys/dev/microcode/siop/Makefile index db8a569b205..223a767324a 100644 --- a/sys/dev/microcode/siop/Makefile +++ b/sys/dev/microcode/siop/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.2 2003/01/08 02:11:38 krw Exp $ +# $OpenBSD: Makefile,v 1.3 2004/03/12 00:04:57 miod Exp $ # $NetBSD: Makefile,v 1.1 2000/04/21 17:57:01 bouyer Exp $ -all: siop.out osiop.out +all: siop.out osiop.out oosiop.out PROG= ncr53cxxx MKSHARE=no @@ -9,11 +9,14 @@ MAN= .include <bsd.prog.mk> -regen: siop.out osiop.out -headers: siop.out osiop.out +regen: siop.out osiop.out oosiop.out +headers: siop.out osiop.out oosiop.out siop.out: siop.ss ${PROG} ./${PROG} siop.ss -p siop.out osiop.out: osiop.ss ${PROG} ./${PROG} osiop.ss -p osiop.out + +oosiop.out: oosiop.ss ${PROG} + ./${PROG} oosiop.ss -p oosiop.out |