summaryrefslogtreecommitdiff
path: root/usr.sbin/wsmoused
diff options
context:
space:
mode:
authorFrederic Cambus <fcambus@cvs.openbsd.org>2020-05-28 20:38:22 +0000
committerFrederic Cambus <fcambus@cvs.openbsd.org>2020-05-28 20:38:22 +0000
commit831d3d64a437f6490d9517e96a364597ed2a8dbc (patch)
tree287f840460bf619970fadd843607d47255c1e539 /usr.sbin/wsmoused
parent58a01178c9d8890c7b7ed5acffad6170e85cf97e (diff)
Enable building wsmoused on arm64 and armv7.
OK deraadt@, kettenis@
Diffstat (limited to 'usr.sbin/wsmoused')
-rw-r--r--usr.sbin/wsmoused/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/wsmoused/Makefile b/usr.sbin/wsmoused/Makefile
index 9b0cc880a64..c71a2efe6e1 100644
--- a/usr.sbin/wsmoused/Makefile
+++ b/usr.sbin/wsmoused/Makefile
@@ -1,6 +1,7 @@
-# $OpenBSD: Makefile,v 1.7 2014/07/16 20:07:03 okan Exp $
+# $OpenBSD: Makefile,v 1.8 2020/05/28 20:38:21 fcambus Exp $
-.if ${MACHINE} == "i386" || ${MACHINE} == "amd64" ||\
+.if ${MACHINE} == "i386" || ${MACHINE} == "amd64" || \
+ ${MACHINE} == "arm64" || ${MACHINE} == "armv7" || \
${MACHINE} == "alpha"
PROG= wsmoused
@@ -13,6 +14,5 @@ NOPROG=yes
.endif
MAN= wsmoused.8
-MANSUBDIR= i386 amd64 alpha
.include <bsd.prog.mk>