- Move DEVICE_POLLING from opt_global.h to opt_polling.h(newly added),
[dragonfly.git] / sys / dev / netif / fxp / Makefile
1 # $FreeBSD: src/sys/modules/fxp/Makefile,v 1.9.2.3 2001/12/04 20:01:53 brooks Exp $
2 # $DragonFly: src/sys/dev/netif/fxp/Makefile,v 1.4 2005/10/24 08:06:15 sephe Exp $
3
4 KMOD    = if_fxp
5 SRCS    = if_fxp.c device_if.h bus_if.h pci_if.h miibus_if.h
6 SRCS    += opt_bdg.h opt_polling.h
7 KMODDEPS = miibus
8
9 .ifndef BUILDING_WITH_KERNEL
10 opt_polling.h:
11         echo '#define DEVICE_POLLING 1' > ${.OBJDIR}/${.TARGET}
12 .endif
13
14 .include <bsd.kmod.mk>