aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorBill Paul <wpaul@FreeBSD.org>2000-01-14 23:46:05 +0000
committerBill Paul <wpaul@FreeBSD.org>2000-01-14 23:46:05 +0000
commit1e152b85f6d861460994a2d6896eff9530103294 (patch)
treee6ba63661cefe66a7f462667c7c71f5104cd91b0 /sys
parent00e888b639f8f428c7f65737a4b73b02306df2d3 (diff)
downloadsrc-1e152b85f6d861460994a2d6896eff9530103294.tar.gz
src-1e152b85f6d861460994a2d6896eff9530103294.zip
Grrr. Really add the module makefile for the Aironet driver.
Notes
Notes: svn path=/head/; revision=55999
Diffstat (limited to 'sys')
-rw-r--r--sys/modules/an/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/modules/an/Makefile b/sys/modules/an/Makefile
new file mode 100644
index 000000000000..ac5fd2a95277
--- /dev/null
+++ b/sys/modules/an/Makefile
@@ -0,0 +1,12 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../dev/an
+KMOD = if_an
+SRCS = if_an.c if_an_pccard.c if_an_pci.c if_an_isa.c
+SRCS += opt_inet.h device_if.h bus_if.h pci_if.h isa_if.h
+CFLAGS += ${DEBUG_FLAGS}
+
+opt_inet.h:
+ echo "#define INET 1" > opt_inet.h
+
+.include <bsd.kmod.mk>