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.7 2008/09/17 08:51:29 sephe Exp $ 3 4KMOD = if_fxp 5SRCS = if_fxp.c device_if.h bus_if.h pci_if.h miibus_if.h 6SRCS += opt_polling.h 7KMODDEPS = miibus 8 9.ifndef BUILDING_WITH_KERNEL 10opt_polling.h: 11 echo '#define DEVICE_POLLING 1' > ${.OBJDIR}/${.TARGET} 12.endif 13 14.include <bsd.kmod.mk> 15