9900a2bb5e
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
18 lines
323 B
Makefile
18 lines
323 B
Makefile
# $Id: Makefile,v 1.1 2004/08/13 18:30:24 max Exp $
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/vkbd
|
|
|
|
KMOD= vkbd
|
|
SRCS= vkbd.c opt_compat.h opt_kbd.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>
|