blob: c71a2efe6e10faee99f28e255adc2a343ea59b23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.8 2020/05/28 20:38:21 fcambus Exp $
.if ${MACHINE} == "i386" || ${MACHINE} == "amd64" || \
${MACHINE} == "arm64" || ${MACHINE} == "armv7" || \
${MACHINE} == "alpha"
PROG= wsmoused
SRCS= wsmoused.c mouse_protocols.c
.else
NOPROG=yes
.endif
MAN= wsmoused.8
.include <bsd.prog.mk>
|