]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/modules/ixgbe/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / modules / ixgbe / Makefile
1 #$FreeBSD$
2 .PATH:  ${.CURDIR}/../../dev/ixgbe
3 KMOD    = ixgbe
4 SRCS    = device_if.h bus_if.h pci_if.h
5 SRCS    += ixgbe.c
6 # Shared source
7 SRCS    += ixgbe_common.c ixgbe_api.c ixgbe_phy.c
8 SRCS    += ixgbe_82599.c ixgbe_82598.c
9 CFLAGS+= -I${.CURDIR}/../../dev/ixgbe -DSMP -DIXGBE_FDIR
10
11 clean:
12         rm -f device_if.h bus_if.h pci_if.h setdef* *_StripErr
13         rm -f *.o *.kld *.ko
14         rm -f @ machine
15
16 .include <bsd.kmod.mk>