Makefile revision 331637
1# $FreeBSD: stable/10/sys/modules/aacraid/Makefile 331637 2018-03-27 17:52:52Z brooks $
2
3.PATH: ${.CURDIR}/../../dev/aacraid
4
5.if ${MACHINE_CPUARCH} == "i386"
6SUBDIR= aacraid_linux
7.endif
8
9KMOD=	aacraid
10SRCS=	aacraid.c aacraid_pci.c aacraid_cam.c
11SRCS+=	opt_scsi.h opt_cam.h opt_compat.h opt_aacraid.h
12SRCS+=	device_if.h bus_if.h pci_if.h
13
14# To enable debug output from the driver, uncomment these two lines.
15#CFLAGS+= -DAACRAID_DEBUG=2
16#SRCS+=	aacraid_debug.c
17
18.include <bsd.kmod.mk>
19