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
293 B
Makefile
17 lines
293 B
Makefile
# $FreeBSD$
|
|
|
|
SYSDIR?=${SRCTOP}/sys
|
|
.include "${SYSDIR}/conf/kern.opts.mk"
|
|
|
|
S= ${SRCTOP}/sys
|
|
|
|
.PATH: $S/dev/vnic
|
|
|
|
KMOD= vnicpf
|
|
SRCS= pci_iov_if.h opt_platform.h device_if.h bus_if.h pci_if.h ofw_bus_if.h miibus_if.h lmac_if.h
|
|
SRCS+= nic_main.c
|
|
|
|
CFLAGS+= -DFDT -DPCI_IOV
|
|
|
|
.include <bsd.kmod.mk>
|