mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
and empty options files. The rules are now generated automatically in
bsd.kmod.mk. Cleaned up related things ($S and ${CLEANFILES}).
19 lines
341 B
Makefile
19 lines
341 B
Makefile
# $FreeBSD$
|
|
|
|
MAINTAINER = n_hibma@freebsd.org
|
|
|
|
.PATH: ${.CURDIR}/../../dev/usb
|
|
KMOD = ukbd
|
|
SRCS = bus_if.h device_if.h vnode_if.h \
|
|
opt_usb.h ukbd.h opt_kbd.h \
|
|
ukbd.c
|
|
NOMAN =
|
|
CLEANFILES = ukbd.h opt_kbd.h
|
|
|
|
ukbd.h:
|
|
echo > ukbd.h
|
|
|
|
opt_kbd.h:
|
|
echo '#define KBD_INSTALL_CDEV 1' > opt_kbd.h
|
|
|
|
.include <bsd.kmod.mk>
|