diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-06-06 00:01:51 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-06-06 00:01:51 +0000 |
commit | 450766661fab1f3d45ec29ad4e91183d4e8be834 (patch) | |
tree | da9cb4f509dc2e1619cc98525235ffc65c6f2c29 /sbin/wsconsctl | |
parent | f042d412f597bd02480f568d91aa3cb4373027cd (diff) |
System build pieces for armish arch.
Diffstat (limited to 'sbin/wsconsctl')
-rw-r--r-- | sbin/wsconsctl/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/sbin/wsconsctl/Makefile b/sbin/wsconsctl/Makefile index 1f7d3f88bef..08e2c7e8734 100644 --- a/sbin/wsconsctl/Makefile +++ b/sbin/wsconsctl/Makefile @@ -1,7 +1,12 @@ -# $OpenBSD: Makefile,v 1.26 2006/05/09 21:17:13 miod Exp $ - -.if ${MACHINE} != "aviion" && ${MACHINE} != "mvme68k" && \ - ${MACHINE} != "mvme88k" && ${MACHINE} != "vax" +# $OpenBSD: Makefile,v 1.27 2006/06/06 00:01:49 drahn Exp $ + +.if ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \ + ${MACHINE} == "cats" || ${MACHINE} == "hp300" || \ + ${MACHINE} == "hppa" || ${MACHINE} == "i386" || \ + ${MACHINE} == "luna88k" || ${MACHINE} == "mac68k" || \ + ${MACHINE} == "macpppc" || ${MACHINE} == "sgi" || \ + ${MACHINE} == "sparc" || ${MACHINE} == "sparc64" || \ + ${MACHINE} == "zaurus" PROG= wsconsctl SRCS= display.c keyboard.c keysym.c map_parse.y map_scan.l \ |