mirror of
https://github.com/opnsense/src.git
synced 2026-05-25 02:35:01 -04:00
16 lines
304 B
Makefile
16 lines
304 B
Makefile
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
.PATH: ${.CURDIR}/../../dev/mfi
|
||
|
|
|
||
|
|
KMOD= mfi
|
||
|
|
SRCS= mfi.c mfi_pci.c mfi_disk.c
|
||
|
|
SRCS+= opt_mfi.h
|
||
|
|
SRCS+= device_if.h bus_if.h pci_if.h
|
||
|
|
CFLAGS+= -Wall -Werror
|
||
|
|
|
||
|
|
# To enable debug output from the driver, uncomment these two lines.
|
||
|
|
#CFLAGS+= -DMFI_DEBUG=2
|
||
|
|
#SRCS+= mfi_debug.c
|
||
|
|
|
||
|
|
.include <bsd.kmod.mk>
|