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