Add a sample loadable pci driver Makefile..

This commit is contained in:
Peter Wemm 1999-04-16 21:52:27 +00:00
parent 2c43119102
commit c002d680f8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45722

28
sys/modules/fxp/Makefile Normal file
View File

@ -0,0 +1,28 @@
# $Id$
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
perl5 $S/kern/makedevops.pl -h $S/kern/device_if.m
bus_if.h: $S/kern/makedevops.pl $S/kern/bus_if.m
perl5 $S/kern/makedevops.pl -h $S/kern/bus_if.m
pci_if.h: $S/kern/makedevops.pl $S/pci/pci_if.m
perl5 $S/kern/makedevops.pl -h $S/pci/pci_if.m
.include <bsd.kmod.mk>