Deleted Added
full compact
Makefile (150636) Makefile (169240)
1#$FreeBSD: head/sys/modules/em/Makefile 150636 2005-09-27 18:10:43Z mlaier $
1$FreeBSD: head/sys/modules/em/Makefile 169240 2007-05-04 00:00:12Z jfv $
2.PATH: ${.CURDIR}/../../dev/em
3KMOD = if_em
4SRCS = device_if.h bus_if.h pci_if.h opt_bdg.h
5SRCS += if_em.c $(SHARED_SRCS)
6SHARED_SRCS = e1000_api.c e1000_phy.c e1000_nvm.c e1000_mac.c e1000_manage.c
7SHARED_SRCS += e1000_80003es2lan.c e1000_82542.c e1000_82541.c e1000_82543.c
8SHARED_SRCS += e1000_82540.c e1000_ich8lan.c e1000_82571.c
2
9
3.PATH: ${.CURDIR}/../../dev/em
10# NOTE: this absolute path is somewhat of a hack, but necessary for
11# the new shared code
12CFLAGS += -I/usr/src/sys/dev/em
4
13
5KMOD= if_em
6SRCS= if_em.c if_em_hw.c
7SRCS+= device_if.h bus_if.h pci_if.h
14# DEVICE_POLLING gives you Legacy interrupt handling
15#CFLAGS += -DDEVICE_POLLING
8
16
17clean:
18 rm -f opt_bdg.h device_if.h bus_if.h pci_if.h setdef*
19 rm -f *.o *.kld *.ko
20 rm -f @ machine
21 rm -f ${CLEANFILES}
22
9.include <bsd.kmod.mk>
23.include <bsd.kmod.mk>