diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1999-04-16 21:52:27 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1999-04-16 21:52:27 +0000 |
| commit | c002d680f8e1afc4a671c3a3fb3276d5c1b918a1 (patch) | |
| tree | ed70b01c560e5fbc21924cba5f24893fb0ab14d6 /sys/modules/fxp | |
| parent | 2c43119102490d61e66de2b6857b31ce7c3aebf0 (diff) | |
Notes
Diffstat (limited to 'sys/modules/fxp')
| -rw-r--r-- | sys/modules/fxp/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys/modules/fxp/Makefile b/sys/modules/fxp/Makefile new file mode 100644 index 000000000000..eb3ca4790d5c --- /dev/null +++ b/sys/modules/fxp/Makefile @@ -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> |
