1# 2# $FreeBSD$ 3# 4 5.include <kmod.opts.mk> 6 7CXGBE= ${SRCTOP}/sys/dev/cxgbe 8.PATH: ${CXGBE} ${CXGBE}/common ${CXGBE}/crypto ${CXGBE}/cudbg 9 10KMOD= if_cxgbe 11SRCS= bus_if.h 12SRCS+= device_if.h 13SRCS+= opt_ddb.h 14SRCS+= opt_inet.h 15SRCS+= opt_inet6.h 16SRCS+= opt_kern_tls.h 17SRCS+= opt_ofed.h 18SRCS+= opt_ratelimit.h 19SRCS+= opt_rss.h 20SRCS+= pci_if.h pci_iov_if.h 21SRCS+= t4_clip.c 22SRCS+= t4_filter.c 23SRCS+= t4_hw.c 24SRCS+= t4_if.c t4_if.h 25SRCS+= t4_iov.c 26SRCS.KERN_TLS+= t6_kern_tls.c 27SRCS+= t4_keyctx.c 28SRCS+= t4_l2t.c 29SRCS+= t4_main.c 30SRCS+= t4_mp_ring.c 31SRCS+= t4_netmap.c 32SRCS+= t4_sched.c 33SRCS+= t4_sge.c 34SRCS+= t4_smt.c 35SRCS+= t4_tracer.c 36SRCS+= cudbg_common.c 37SRCS+= cudbg_flash_utils.c 38SRCS+= cudbg_lib.c 39SRCS+= cudbg_wtp.c 40SRCS+= fastlz_api.c 41SRCS+= fastlz.c 42 43CFLAGS+= -I${CXGBE} 44 45EXPORT_SYMS= YES 46 47.include <bsd.kmod.mk> 48