1999-04-18 13:31:23 +00:00
|
|
|
# $Id: Makefile,v 1.1 1999/04/16 21:52:27 peter Exp $
|
1999-04-16 21:52:27 +00:00
|
|
|
|
|
|
|
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
|
1999-04-18 13:31:23 +00:00
|
|
|
perl $S/kern/makedevops.pl -h $S/kern/device_if.m
|
1999-04-16 21:52:27 +00:00
|
|
|
|
|
|
|
bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
|
1999-04-18 13:31:23 +00:00
|
|
|
perl $S/kern/makedevops.pl -h $S/kern/bus_if.m
|
1999-04-16 21:52:27 +00:00
|
|
|
|
|
|
|
pci_if.h: $S/kern/makedevops.pl $S/pci/pci_if.m
|
1999-04-18 13:31:23 +00:00
|
|
|
perl $S/kern/makedevops.pl -h $S/pci/pci_if.m
|
1999-04-16 21:52:27 +00:00
|
|
|
|
|
|
|
.include <bsd.kmod.mk>
|