fb2b382f5f
To enable event sourcing from kbdmux(4) kern.evdev.rcpt_mask value should have bit 1 set (this is default) Submitted by: Vladimir Kondratiev <wulf@cicgroup.ru> MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D8437
19 lines
381 B
Makefile
19 lines
381 B
Makefile
# $Id: Makefile,v 1.1 2005/06/23 00:30:50 max Exp $
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/kbdmux
|
|
|
|
KMOD= kbdmux
|
|
SRCS= kbdmux.c opt_compat.h opt_evdev.h opt_kbd.h opt_kbdmux.h bus_if.h \
|
|
device_if.h
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
opt_compat.h:
|
|
echo "#define COMPAT_FREEBSD6 1" > ${.TARGET}
|
|
|
|
opt_kbd.h:
|
|
echo "#define KBD_INSTALL_CDEV 1" > ${.TARGET}
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|