diff options
author | peter <peter@FreeBSD.org> | 1999-09-27 00:34:02 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-09-27 00:34:02 +0000 |
commit | 3b7b04fccc5c46d07ffbbcd9c0246fe5edb20306 (patch) | |
tree | 7b4a506a66cd76e9ce362bf9829d796b61e08ef4 /sys/modules/xl/Makefile | |
parent | b09937d8f3744997aab502521d1c0e3d115fcf44 (diff) | |
download | FreeBSD-src-3b7b04fccc5c46d07ffbbcd9c0246fe5edb20306.zip FreeBSD-src-3b7b04fccc5c46d07ffbbcd9c0246fe5edb20306.tar.gz |
Don't generate 'bpf.h' since it's not used.
Diffstat (limited to 'sys/modules/xl/Makefile')
-rw-r--r-- | sys/modules/xl/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/modules/xl/Makefile b/sys/modules/xl/Makefile index e33d36d..ffdb37f9 100644 --- a/sys/modules/xl/Makefile +++ b/sys/modules/xl/Makefile @@ -3,9 +3,9 @@ S = ${.CURDIR}/../.. .PATH: $S/pci KMOD = if_xl -SRCS = if_xl.c xl.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h +SRCS = if_xl.c xl.h opt_bdg.h device_if.h bus_if.h pci_if.h SRCS += miibus_if.h -CLEANFILES += xl.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h +CLEANFILES += xl.h opt_bdg.h device_if.h bus_if.h pci_if.h CLEANFILES += miibus_if.h CFLAGS += ${DEBUG_FLAGS} KMODDEPS = miibus @@ -13,9 +13,6 @@ KMODDEPS = miibus xl.h: echo "#define NXL 1" > xl.h -bpf.h: - echo "#define NBPF 1" > bpf.h - opt_bdg.h: touch opt_bdg.h |