summaryrefslogtreecommitdiffstats
path: root/sys/modules
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-04-16 21:52:27 +0000
committerpeter <peter@FreeBSD.org>1999-04-16 21:52:27 +0000
commit245187b52e39f3a1ae09419cc38aeec38b683465 (patch)
tree0262c2e98fec8a86940b80fedf7c1231146b8aa1 /sys/modules
parent10e9d1950e5e07ca9eeb8b557b3fd44b693b6030 (diff)
downloadFreeBSD-src-245187b52e39f3a1ae09419cc38aeec38b683465.zip
FreeBSD-src-245187b52e39f3a1ae09419cc38aeec38b683465.tar.gz
Add a sample loadable pci driver Makefile..
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/fxp/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/sys/modules/fxp/Makefile b/sys/modules/fxp/Makefile
new file mode 100644
index 0000000..eb3ca47
--- /dev/null
+++ b/sys/modules/fxp/Makefile
@@ -0,0 +1,28 @@
+# $Id$
+
+S = ${.CURDIR}/../..
+.PATH: $S/pci
+KMOD = fxp
+SRCS = if_fxp.c fxp.h bpfilter.h opt_bdg.h device_if.h bus_if.h pci_if.h
+CLEANFILES += fxp.h bpfilter.h opt_bdg.h device_if.h bus_if.h pci_if.h
+CFLAGS += ${DEBUG_FLAGS}
+
+fxp.h:
+ echo "#define NFXP 1" > fxp.h
+
+bpfilter.h:
+ echo "#define NBPFILTER 0" > bpfilter.h
+
+opt_bdg.h:
+ touch opt_bdg.h
+
+device_if.h: $S/kern/makedevops.pl $S/kern/device_if.m
+ perl5 $S/kern/makedevops.pl -h $S/kern/device_if.m
+
+bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
+ perl5 $S/kern/makedevops.pl -h $S/kern/bus_if.m
+
+pci_if.h: $S/kern/makedevops.pl $S/pci/pci_if.m
+ perl5 $S/kern/makedevops.pl -h $S/pci/pci_if.m
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud