From d383383e6f59051fb95fa3a69ba07fdbf9ebf74d Mon Sep 17 00:00:00 2001 From: Scott Long Date: Sat, 17 Mar 2001 04:42:33 +0000 Subject: [PATCH] Fix the building of the aac driver as a module. Add a comment about enabling debug information for the driver. --- sys/modules/aac/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/modules/aac/Makefile b/sys/modules/aac/Makefile index 3759b504d7c..08409e0dc66 100644 --- a/sys/modules/aac/Makefile +++ b/sys/modules/aac/Makefile @@ -3,11 +3,12 @@ .PATH: ${.CURDIR}/../../dev/aac KMOD= aac -SRCS= aac.c aac_pci.c aac_disk.c +SRCS= aac.c aac_pci.c aac_disk.c opt_aac.h SRCS+= device_if.h bus_if.h pci_if.h CFLAGS+= -DAAC_COMPAT_LINUX +# To enable debug output from the driver, uncomment these two lines. #CFLAGS+= -DAAC_DEBUG=2 #SRCS+= aac_debug.c