xref: /dragonfly/sys/dev/raid/mfi/Makefile (revision 0dace59e)
1# $FreeBSD: src/sys/modules/mfi/Makefile,v 1.6 2010/08/23 06:13:29 imp Exp $
2
3SUBDIR= mfip
4
5#.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
6.if ${MACHINE_ARCH} == "i386"
7SUBDIR+= mfi_linux
8.endif
9
10KMOD=	mfi
11SRCS=	mfi.c mfi_pci.c mfi_disk.c mfi_debug.c mfi_syspd.c mfi_tbolt.c
12SRCS+=	opt_mfi.h opt_cam.h
13SRCS+=	device_if.h bus_if.h pci_if.h
14
15#CFLAGS += -DMFI_DEBUG
16
17.include <bsd.kmod.mk>
18