mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 12:51:07 -05:00
22 lines
273 B
Makefile
22 lines
273 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
.PATH: ${SRCTOP}/sys/dev/vmd
|
||
|
|
|
||
|
|
KMOD= vmd
|
||
|
|
|
||
|
|
SRCS= \
|
||
|
|
vmd_bus.c \
|
||
|
|
vmd.c \
|
||
|
|
bus_if.h \
|
||
|
|
device_if.h \
|
||
|
|
pci_if.h \
|
||
|
|
pcib_if.h \
|
||
|
|
opt_global.h \
|
||
|
|
|
||
|
|
CFLAGS+= -include opt_global.h
|
||
|
|
|
||
|
|
opt_global.h:
|
||
|
|
echo "#define NEW_PCIB 1" >> ${.TARGET}
|
||
|
|
|
||
|
|
.include <bsd.kmod.mk>
|