Makefile revision 158737
1# $FreeBSD: head/sys/modules/mfi/Makefile 158737 2006-05-18 23:30:48Z ambrisko $
2
3.PATH: ${.CURDIR}/../../dev/mfi
4
5.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
6SUBDIR= mfi_linux
7.endif
8
9KMOD=	mfi
10SRCS=	mfi.c mfi_pci.c mfi_disk.c
11SRCS+=	opt_mfi.h
12SRCS+=	device_if.h bus_if.h pci_if.h
13CFLAGS+= -Wall -Werror
14
15# To enable debug output from the driver, uncomment these two lines.
16#CFLAGS+= -DMFI_DEBUG=2
17#SRCS+=	mfi_debug.c
18
19.include <bsd.kmod.mk>
20