freebsd-dev/sys/modules/linsysfs/Makefile
Dmitry Chagin 6e4cf32e95 Add warning to the Linuxulator makefiles that building it outside of a
kernel does not make sence.

PR:		222861
MFC after:	2 weeks
Differential Revision:	https://reviews.freebsd.org/D20179
2019-05-13 18:28:40 +00:00

15 lines
260 B
Makefile

# $FreeBSD$
.PATH: ${SRCTOP}/sys/compat/linsysfs
KMOD= linsysfs
SRCS= vnode_if.h \
device_if.h bus_if.h pci_if.h \
linsysfs.c
.if !defined(KERNBUILDDIR)
.warning Building Linuxulator outside of a kernel does not make sense
.endif
.include <bsd.kmod.mk>