diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2005-01-13 19:17:26 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2005-01-13 19:17:26 +0000 |
commit | f5b97e9b5d35932b98d2a5571688fdf842679267 (patch) | |
tree | 8639a24675773555f1601738240269e1292c6c71 /sbin/wsconsctl | |
parent | 9baaa89847fb53ec5b8efb870aa00fadf95d030c (diff) |
build on zaurus too, after further discusssion, because MANSUBDIR needs
updating it will be explicit MACHINE
Diffstat (limited to 'sbin/wsconsctl')
-rw-r--r-- | sbin/wsconsctl/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sbin/wsconsctl/Makefile b/sbin/wsconsctl/Makefile index 98d6950a38b..9ef0c977ad4 100644 --- a/sbin/wsconsctl/Makefile +++ b/sbin/wsconsctl/Makefile @@ -1,10 +1,11 @@ -# $OpenBSD: Makefile,v 1.20 2004/08/06 22:41:07 pefo Exp $ +# $OpenBSD: Makefile,v 1.21 2005/01/13 19:17:25 drahn Exp $ .if ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \ ${MACHINE} == "cats" || ${MACHINE} == "hppa" || \ ${MACHINE} == "i386" || ${MACHINE} == "luna88k" || \ ${MACHINE} == "macppc" || ${MACHINE} == "sparc" || \ - ${MACHINE} == "sgi" || ${MACHINE} == "sparc64" + ${MACHINE} == "sgi" || ${MACHINE} == "sparc64" || \ + ${MACHINE} == "zaurus" PROG= wsconsctl SRCS= display.c keyboard.c keysym.c map_parse.y map_scan.l \ @@ -26,5 +27,6 @@ NOPROG=yes MAN= wsconsctl.8 MANSUBDIR= alpha amd64 cats hppa i386 luna88k macppc sgi sparc sparc64 +MANSUBDIR+= zaurus .include <bsd.prog.mk> |