Deleted Added
full compact
Makefile (270297) Makefile (284052)
1#
1#
2# $FreeBSD: stable/10/sys/modules/cxgbe/if_cxgbe/Makefile 270297 2014-08-21 19:54:02Z np $
2# $FreeBSD: stable/10/sys/modules/cxgbe/if_cxgbe/Makefile 284052 2015-06-06 09:28:40Z np $
3#
4
5.include <bsd.own.mk>
6
7CXGBE= ${.CURDIR}/../../../dev/cxgbe
8.PATH: ${CXGBE} ${CXGBE}/common
9
10KMOD= if_cxgbe
11SRCS= bus_if.h
12SRCS+= device_if.h
13SRCS+= opt_inet.h
14SRCS+= opt_inet6.h
15SRCS+= opt_ofed.h
16SRCS+= pci_if.h
17SRCS+= t4_hw.c
18SRCS+= t4_l2t.c
19SRCS+= t4_main.c
3#
4
5.include <bsd.own.mk>
6
7CXGBE= ${.CURDIR}/../../../dev/cxgbe
8.PATH: ${CXGBE} ${CXGBE}/common
9
10KMOD= if_cxgbe
11SRCS= bus_if.h
12SRCS+= device_if.h
13SRCS+= opt_inet.h
14SRCS+= opt_inet6.h
15SRCS+= opt_ofed.h
16SRCS+= pci_if.h
17SRCS+= t4_hw.c
18SRCS+= t4_l2t.c
19SRCS+= t4_main.c
20SRCS+= t4_mp_ring.c
20SRCS+= t4_netmap.c
21SRCS+= t4_sge.c
22SRCS+= t4_tracer.c
23
24# Provide the timestamp of a packet in its header mbuf.
25#CFLAGS+= -DT4_PKT_TIMESTAMP
26
27CFLAGS+= -I${CXGBE}

--- 7 unchanged lines hidden (view full) ---

35
36.if ${MK_INET6_SUPPORT} != "no"
37opt_inet6.h:
38 @echo "#define INET6 1" > ${.TARGET}
39.endif
40.endif
41
42.include <bsd.kmod.mk>
21SRCS+= t4_netmap.c
22SRCS+= t4_sge.c
23SRCS+= t4_tracer.c
24
25# Provide the timestamp of a packet in its header mbuf.
26#CFLAGS+= -DT4_PKT_TIMESTAMP
27
28CFLAGS+= -I${CXGBE}

--- 7 unchanged lines hidden (view full) ---

36
37.if ${MK_INET6_SUPPORT} != "no"
38opt_inet6.h:
39 @echo "#define INET6 1" > ${.TARGET}
40.endif
41.endif
42
43.include <bsd.kmod.mk>
44CFLAGS+= ${GCC_MS_EXTENSIONS}