Makefile revision 177671
1#$FreeBSD: head/sys/modules/ixgbe/Makefile 177671 2008-03-27 20:38:03Z antoine $
2.PATH:  ${.CURDIR}/../../dev/ixgbe
3KMOD    = ixgbe
4SRCS    = device_if.h bus_if.h pci_if.h
5SRCS    += ixgbe.c 
6# Shared source
7SRCS    += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_82598.c
8CFLAGS+= -I${.CURDIR}/../../dev/ixgbe
9
10clean:
11	rm -f device_if.h bus_if.h pci_if.h setdef* *_StripErr
12	rm -f *.o *.kld *.ko
13	rm -f @ machine
14
15.include <bsd.kmod.mk>
16