#$FreeBSD$
.PATH:  ${.CURDIR}
KMOD    = if_em
SRCS    = device_if.h bus_if.h pci_if.h opt_bdg.h
SRCS    += if_e1000.c $(SHARED_SRCS)
SHARED_SRCS = e1000_api.c e1000_phy.c e1000_nvm.c e1000_mac.c e1000_manage.c
SHARED_SRCS += e1000_80003es2lan.c e1000_82542.c e1000_82541.c e1000_82543.c
SHARED_SRCS += e1000_82540.c e1000_ich8lan.c e1000_82571.c

CFLAGS  += -DLM
# Add this to build with TSO
#CFLAGS  += -DE1000_TSO
# EM_FAST_INTR gives you high performance interrupt handling
# but may have stability issues on some systems
#CFLAGS  += -DE1000_FAST_INTR

clean:
	rm -f opt_bdg.h device_if.h bus_if.h pci_if.h setdef*
	rm -f *.o *.kld *.ko
	rm -f @ machine
	rm -f ${CLEANFILES}

man:
	mv /usr/share/man/man4/em.4.gz /usr/share/man/man4/emSAVE.4.gz
	cp em.4 /usr/share/man/man4/

.include <bsd.kmod.mk>
