aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ti/Makefile
diff options
context:
space:
mode:
authorBill Paul <wpaul@FreeBSD.org>1999-07-23 05:48:01 +0000
committerBill Paul <wpaul@FreeBSD.org>1999-07-23 05:48:01 +0000
commit98edb3e17869504d0ada58932efa96b71f899181 (patch)
tree71bcc2955a570840b12935fb9812b8a69b6bc6a1 /sys/modules/ti/Makefile
parente26aedfbf85a40d42315ad090ba9e33296aee3ba (diff)
Notes
Diffstat (limited to 'sys/modules/ti/Makefile')
-rw-r--r--sys/modules/ti/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/sys/modules/ti/Makefile b/sys/modules/ti/Makefile
new file mode 100644
index 000000000000..b3d2064fcff6
--- /dev/null
+++ b/sys/modules/ti/Makefile
@@ -0,0 +1,31 @@
+# $Id: Makefile,v 1.3 1999/07/06 19:23:01 des Exp $
+
+S = ${.CURDIR}/../..
+.PATH: $S/pci
+KMOD = ti
+SRCS = if_ti.c ti.h bpf.h opt_bdg.h vlan.h device_if.h bus_if.h pci_if.h
+CLEANFILES += ti.h bpf.h opt_bdg.h vlan.h device_if.h bus_if.h pci_if.h
+CFLAGS += ${DEBUG_FLAGS}
+
+ti.h:
+ echo "#define NFXP 1" > ti.h
+
+bpf.h:
+ echo "#define NBPF 1" > bpf.h
+
+opt_bdg.h:
+ touch opt_bdg.h
+
+vlan.h:
+ touch vlan.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>