diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-01-29 02:55:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-01-29 02:55:49 +0000 |
commit | bbd830e945c31399044c4b49fd8e37030a31875d (patch) | |
tree | cb1fdc2527728a342c239972c7d6fc941058306d /sbin | |
parent | 4bcfce8d2a962e517886ec25da01119c250d9d5e (diff) |
will be needed for cats too
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/iopctl/Makefile | 4 | ||||
-rw-r--r-- | sbin/kbd/Makefile | 6 | ||||
-rw-r--r-- | sbin/wsconsctl/Makefile | 5 |
3 files changed, 8 insertions, 7 deletions
diff --git a/sbin/iopctl/Makefile b/sbin/iopctl/Makefile index c695ccbec27..00a17c59ea7 100644 --- a/sbin/iopctl/Makefile +++ b/sbin/iopctl/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.5 2004/01/28 17:45:22 deraadt Exp $ +# $OpenBSD: Makefile,v 1.6 2004/01/29 02:55:47 deraadt Exp $ .if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \ (${MACHINE} == "macppc") || (${MACHINE} == "pegasos") || \ - (${MACHINE} == "alpha") + (${MACHINE} == "alpha") || (${MACHINE} == "cats") PROG= iopctl .else NOPROG= diff --git a/sbin/kbd/Makefile b/sbin/kbd/Makefile index 4c14f58f989..536a39d6bbc 100644 --- a/sbin/kbd/Makefile +++ b/sbin/kbd/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.18 2004/01/28 17:45:22 deraadt Exp $ +# $OpenBSD: Makefile,v 1.19 2004/01/29 02:55:48 deraadt Exp $ .if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \ (${MACHINE} == "macppc") || (${MACHINE} == "pegasos") || \ (${MACHINE} == "alpha") || (${MACHINE} == "hppa") || \ (${MACHINE} == "sparc") || (${MACHINE} == "sparc64") || \ - (${MACHINE} == "vax") + (${MACHINE} == "vax") || (${MACHINE} == "cats") PROG= kbd @@ -17,6 +17,6 @@ NOPROG= Yes .endif MAN= kbd.8 -MANSUBDIR= alpha hppa i386 macppc sparc sparc64 vax pegosos amd64 +MANSUBDIR= alpha hppa i386 macppc sparc sparc64 vax pegosos amd64 cats .include <bsd.prog.mk> diff --git a/sbin/wsconsctl/Makefile b/sbin/wsconsctl/Makefile index b62a5a4b754..59768f8e827 100644 --- a/sbin/wsconsctl/Makefile +++ b/sbin/wsconsctl/Makefile @@ -1,9 +1,10 @@ -# $OpenBSD: Makefile,v 1.14 2004/01/28 17:45:22 deraadt Exp $ +# $OpenBSD: Makefile,v 1.15 2004/01/29 02:55:48 deraadt Exp $ .if ${MACHINE} == "i386" || ${MACHINE} == "amd64" || \ ${MACHINE} == "hppa" || ${MACHINE} == "macppc" || \ ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" || \ - ${MACHINE} == "pegasos" || ${MACHINE} == "alpha" + ${MACHINE} == "pegasos" || ${MACHINE} == "alpha" || + ${MACHINE} == "cats" PROG= wsconsctl SRCS= display.c keyboard.c keysym.c map_parse.y map_scan.l \ |