mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-18 15:30:21 +00:00
40ec3caac8
Except for miibus which is now installed as miibus.ko. Discussed by: msmith, peter, and wpaul
29 lines
653 B
Makefile
29 lines
653 B
Makefile
# $FreeBSD$
|
|
|
|
S = ${.CURDIR}/../..
|
|
.PATH: $S/pci
|
|
KMOD = if_fxp
|
|
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
|
|
|
|
bpf.h:
|
|
echo "#define NBPF 0" > bpf.h
|
|
|
|
opt_bdg.h:
|
|
touch opt_bdg.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>
|