xref: /freebsd/sys/modules/aac/Makefile (revision 7874f606d5cefa443c96bc218d76d696db6f1a69)
1# $FreeBSD$
2
3.PATH: ${.CURDIR}/../../dev/aac
4
5SUBDIR= aac_linux
6
7KMOD=	aac
8SRCS=	aac.c aac_pci.c aac_disk.c aac_cam.c
9SRCS+=	opt_scsi.h opt_cam.h opt_aac.h
10SRCS+=	device_if.h bus_if.h pci_if.h
11
12# To enable debug output from the driver, uncomment these two lines.
13#CFLAGS+= -DAAC_DEBUG=2
14#SRCS+=	aac_debug.c
15CFLAGS+= -g
16
17.include <bsd.kmod.mk>
18