Makefile revision 162624
1# $FreeBSD: head/sys/modules/mfi/Makefile 162624 2006-09-25 11:42:12Z scottl $
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 mfi_debug.c
11SRCS+=	opt_mfi.h
12SRCS+=	device_if.h bus_if.h pci_if.h
13
14#CFLAGS += -DMFI_DEBUG
15
16.include <bsd.kmod.mk>
17