]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/em/Makefile
This commit was generated by cvs2svn to compensate for changes in r172668,
[FreeBSD/FreeBSD.git] / sys / modules / em / Makefile
1 # $FreeBSD$
2 .PATH:  ${.CURDIR}/../../dev/em
3 KMOD    = if_em
4 SRCS    = device_if.h bus_if.h pci_if.h opt_bdg.h
5 SRCS    += if_em.c $(SHARED_SRCS)
6 SHARED_SRCS = e1000_api.c e1000_phy.c e1000_nvm.c e1000_mac.c e1000_manage.c
7 SHARED_SRCS += e1000_80003es2lan.c e1000_82542.c e1000_82541.c e1000_82543.c
8 SHARED_SRCS += e1000_82540.c e1000_ich8lan.c e1000_82571.c e1000_82575.c
9
10 CFLAGS+= -I${.CURDIR}/../../dev/em
11
12 # DEVICE_POLLING gives you Legacy interrupt handling
13 #CFLAGS  += -DDEVICE_POLLING
14
15 clean:
16         rm -f opt_bdg.h device_if.h bus_if.h pci_if.h setdef*
17         rm -f *.o *.kld *.ko
18         rm -f @ machine
19         rm -f ${CLEANFILES}
20
21 .include <bsd.kmod.mk>