diff options
author | des <des@FreeBSD.org> | 1999-07-06 19:23:32 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 1999-07-06 19:23:32 +0000 |
commit | 3c4a5a075de68863e7f083e95007a8669ff54a1d (patch) | |
tree | 04c67d5ff85a81c06638fa69415cc80858136f6c /sys/modules/fxp | |
parent | 71fd17e057eaec0ab952eb46cd1d1dcd78b8183a (diff) | |
download | FreeBSD-src-3c4a5a075de68863e7f083e95007a8669ff54a1d.zip FreeBSD-src-3c4a5a075de68863e7f083e95007a8669ff54a1d.tar.gz |
Rename bpfilter to bpf.
Diffstat (limited to 'sys/modules/fxp')
-rw-r--r-- | sys/modules/fxp/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/modules/fxp/Makefile b/sys/modules/fxp/Makefile index 4b32e6b..607f459 100644 --- a/sys/modules/fxp/Makefile +++ b/sys/modules/fxp/Makefile @@ -1,17 +1,17 @@ -# $Id: Makefile,v 1.1 1999/04/16 21:52:27 peter Exp $ +# $Id: Makefile,v 1.2 1999/04/18 13:31:23 dfr Exp $ 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 +SRCS = if_fxp.c fxp.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h +CLEANFILES += fxp.h bpf.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 +bpf.h: + echo "#define NBPF 0" > bpf.h opt_bdg.h: touch opt_bdg.h |