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
17 lines
254 B
Makefile
17 lines
254 B
Makefile
# ioat Loadable Kernel Module
|
|
#
|
|
# $FreeBSD$
|
|
|
|
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>
|