mirror of
https://github.com/opnsense/src.git
synced 2026-02-23 01:46:42 -05:00
Centralize the list of generated files required by linuxkpi consumers, into the common variable. This way, consumers that use the variable are insulated from possible changes in the list. Reviewed by: hselasky, imp Sponsored by: Mellanox Technologies MFC after: 1 week Differential revision: https://reviews.freebsd.org/D24137
29 lines
542 B
Makefile
29 lines
542 B
Makefile
# $FreeBSD$
|
|
.PATH: ${SRCTOP}/sys/compat/linuxkpi/common/src
|
|
|
|
KMOD= linuxkpi
|
|
SRCS= linux_compat.c \
|
|
linux_current.c \
|
|
linux_hrtimer.c \
|
|
linux_idr.c \
|
|
linux_kmod.c \
|
|
linux_kthread.c \
|
|
linux_lock.c \
|
|
linux_page.c \
|
|
linux_pci.c \
|
|
linux_radix.c \
|
|
linux_rcu.c \
|
|
linux_seq_file.c \
|
|
linux_schedule.c \
|
|
linux_shmemfs.c \
|
|
linux_slab.c \
|
|
linux_tasklet.c \
|
|
linux_usb.c \
|
|
linux_work.c
|
|
|
|
SRCS+= ${LINUXKPI_GENSRCS}
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/compat/linuxkpi/common/include
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/ck/include
|
|
|
|
.include <bsd.kmod.mk>
|