xref: /freebsd/sys/modules/cxgbe/if_cxgbe/Makefile (revision 7e00348e7605b9906601438008341ffc37c00e2c)
1#
2# $FreeBSD$
3#
4
5CXGBE=	${.CURDIR}/../../../dev/cxgbe
6.PATH: ${CXGBE} ${CXGBE}/common
7
8KMOD=	if_cxgbe
9SRCS=	bus_if.h
10SRCS+=	device_if.h
11SRCS+=	opt_inet.h
12SRCS+=	opt_inet6.h
13SRCS+=	opt_ofed.h
14SRCS+=	pci_if.h
15SRCS+=	t4_hw.c
16SRCS+=	t4_l2t.c
17SRCS+=	t4_main.c
18SRCS+=	t4_netmap.c
19SRCS+=	t4_sge.c
20SRCS+=	t4_tracer.c
21
22# Provide the timestamp of a packet in its header mbuf.
23#CFLAGS+= -DT4_PKT_TIMESTAMP
24
25CFLAGS+= -I${CXGBE}
26
27.include <bsd.kmod.mk>
28