193d9e768b
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
28 lines
471 B
Makefile
28 lines
471 B
Makefile
# $FreeBSD$
|
|
.PATH: ${SRCTOP}/sys/compat/linuxkpi/common/src
|
|
|
|
KMOD= linuxkpi
|
|
SRCS= linux_kmod.c \
|
|
linux_compat.c \
|
|
linux_current.c \
|
|
linux_kthread.c \
|
|
linux_page.c \
|
|
linux_pci.c \
|
|
linux_radix.c \
|
|
linux_rcu.c \
|
|
linux_tasklet.c \
|
|
linux_idr.c \
|
|
linux_usb.c
|
|
|
|
SRCS+= bus_if.h \
|
|
device_if.h \
|
|
pci_if.h \
|
|
vnode_if.h \
|
|
usb_if.h \
|
|
opt_usb.h
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/compat/linuxkpi/common/include
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/ck/include
|
|
|
|
.include <bsd.kmod.mk>
|