diff options
author | paul <paul@FreeBSD.org> | 2000-12-16 01:47:37 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 2000-12-16 01:47:37 +0000 |
commit | 68a747665a48a55c08027aa006b6a9cbe1ba6acd (patch) | |
tree | 21dea6e0220437d18fa12a2cc9520ef3d961aa8b /sys/modules | |
parent | 51b6b5a26a579cf4b05ead1150d2e2a1adbbe62d (diff) | |
download | FreeBSD-src-68a747665a48a55c08027aa006b6a9cbe1ba6acd.zip FreeBSD-src-68a747665a48a55c08027aa006b6a9cbe1ba6acd.tar.gz |
Add lnc module.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/lnc/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/modules/lnc/Makefile b/sys/modules/lnc/Makefile new file mode 100644 index 0000000..c65c929 --- /dev/null +++ b/sys/modules/lnc/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/lnc +KMOD = lnc +SRCS = if_lnc.c if_lnc_pci.c if_lnc_isa.c if_lnc_pc98.c +SRCS += opt_inet.h device_if.h bus_if.h isa_if.h pci_if.h +#SRCS += miibus_if.h +#KMODDEPS = miibus +CFLAGS += -g -I${.CURDIR}/../../dev/lnc + +.include <bsd.kmod.mk> |