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 26.if ${KERN_OPTS:MKERN_TLS} != "" 27SRCS+= t4_kern_tls.c 28.endif 29SRCS+= t4_keyctx.c 30SRCS+= t4_l2t.c 31SRCS+= t4_main.c 32SRCS+= t4_mp_ring.c 33SRCS+= t4_netmap.c 34SRCS+= t4_sched.c 35SRCS+= t4_sge.c 36SRCS+= t4_smt.c 37SRCS+= t4_tracer.c 38SRCS+= cudbg_common.c 39SRCS+= cudbg_flash_utils.c 40SRCS+= cudbg_lib.c 41SRCS+= cudbg_wtp.c 42SRCS+= fastlz_api.c 43SRCS+= fastlz.c 44 45CFLAGS+= -I${CXGBE} 46 47EXPORT_SYMS= YES 48 49.include <bsd.kmod.mk> 50