freebsd-dev/usr.sbin/cxgbetool/Makefile
Emmanuel Vadot b8876cac2d pkgbase: Create a cxgbe-tools package
cxgbetool is only useful for users who have a Chelsio card.
Create a package for it so users that don't have this card can
avoid having this program.

Differential Revision:	https://reviews.freebsd.org/D31793
2021-09-07 10:19:37 +02:00

16 lines
300 B
Makefile

# $FreeBSD$
PACKAGE= cxgbe-tools
PROG= cxgbetool
MAN= cxgbetool.8
SRCS= cxgbetool.c
SRCS+= tcb_common.c
SRCS+= tcbinfot4.c tcbshowt4.c
SRCS+= tcbinfot5.c tcbshowt5.c
SRCS+= tcbinfot6.c tcbshowt6.c
CFLAGS+= -I${SRCTOP}/sys/dev/cxgbe -I${SRCTOP}/sys -I.
LIBADD= pcap
WARNS?= 2
.include <bsd.prog.mk>