diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-04-14 04:47:42 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2001-04-14 04:47:42 +0000 |
commit | 42ffb54282c89d5371bfcb33cc988020b1c94d91 (patch) | |
tree | 06f5fd8264dcc971c73bbb3d01f00f3d930be2ad /usr.sbin/wsmoused/Makefile | |
parent | adffc27bad14cc984251f7b99221c20ae0ecef8f (diff) |
Userland daemon for wscons console mouse features.
Diffstat (limited to 'usr.sbin/wsmoused/Makefile')
-rw-r--r-- | usr.sbin/wsmoused/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/usr.sbin/wsmoused/Makefile b/usr.sbin/wsmoused/Makefile new file mode 100644 index 00000000000..f7847545c88 --- /dev/null +++ b/usr.sbin/wsmoused/Makefile @@ -0,0 +1,18 @@ +# $OpenBSD: Makefile,v 1.1 2001/04/14 04:47:40 aaron Exp $ + +.if ${MACHINE} == "i386" + +PROG= wsmoused +SRCS= wsmoused.c mouse_protocols.c + +.else + +NOPROG=yes + +.endif + +MAN= wsmoused.8 +MANSUBDIR= i386 + +.include <bsd.prog.mk> + |