summaryrefslogtreecommitdiffstats
path: root/sys/modules/mlx
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>1999-10-07 02:20:32 +0000
committermsmith <msmith@FreeBSD.org>1999-10-07 02:20:32 +0000
commit685ad456458d562e46df50ddeed3eb1681377f14 (patch)
treea897ba564cf92337e50c361d0365fec0869bf11d /sys/modules/mlx
parentf9e0a2c0d2e08321faa5356e9371410b9be348ab (diff)
downloadFreeBSD-src-685ad456458d562e46df50ddeed3eb1681377f14.zip
FreeBSD-src-685ad456458d562e46df50ddeed3eb1681377f14.tar.gz
This is a driver for the Mylex DAC960 family of integrated RAID
controllers. It currently supports the P, PL, PD and PU variants, with more to be supported shortly.
Diffstat (limited to 'sys/modules/mlx')
-rw-r--r--sys/modules/mlx/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/sys/modules/mlx/Makefile b/sys/modules/mlx/Makefile
new file mode 100644
index 0000000..d804e85
--- /dev/null
+++ b/sys/modules/mlx/Makefile
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+S = ${.CURDIR}/../..
+.PATH: $S/dev/mlx
+KMOD = mlx
+SRCS = mlx.c mlx_pci.c mlx_disk.c device_if.h bus_if.h pci_if.h
+CLEANFILES += mlx.h device_if.h bus_if.h pci_if.h
+CFLAGS += ${DEBUG_FLAGS}
+
+mlx.h:
+ echo "#define NMLX 1" > mlx.h
+
+device_if.h: $S/kern/makedevops.pl $S/kern/device_if.m
+ perl $S/kern/makedevops.pl -h $S/kern/device_if.m
+
+bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
+ perl $S/kern/makedevops.pl -h $S/kern/bus_if.m
+
+pci_if.h: $S/kern/makedevops.pl $S/pci/pci_if.m
+ perl $S/kern/makedevops.pl -h $S/pci/pci_if.m
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud