mirror of
https://github.com/opnsense/src.git
synced 2026-03-03 05:41:01 -05:00
15 lines
242 B
Makefile
15 lines
242 B
Makefile
# ioat Loadable Kernel Module
|
|
#
|
|
|
|
IOAT_SRC_PATH = ${SRCTOP}/sys
|
|
|
|
.PATH: ${IOAT_SRC_PATH}/dev/ioat
|
|
|
|
KMOD= ioat
|
|
SRCS= ioat.c ioat_test.c
|
|
SRCS+= device_if.h bus_if.h pci_if.h
|
|
SRCS+= opt_ddb.h
|
|
|
|
CFLAGS+= -I${IOAT_SRC_PATH}
|
|
|
|
.include <bsd.kmod.mk>
|