401e870791
Reported by: Peter Lei
24 lines
346 B
Makefile
24 lines
346 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../../netinet/tcp_stacks
|
|
|
|
STACKNAME= rack
|
|
KMOD= tcp_${STACKNAME}
|
|
SRCS= rack.c sack_filter.c
|
|
|
|
SRCS+= opt_inet.h opt_inet6.h opt_ipsec.h
|
|
SRCS+= opt_tcpdebug.h
|
|
SRCS+= opt_kern_tls.h
|
|
|
|
#
|
|
# Enable full debugging
|
|
#
|
|
#CFLAGS += -g
|
|
|
|
CFLAGS+= -DMODNAME=${KMOD}
|
|
CFLAGS+= -DSTACKNAME=${STACKNAME}
|
|
|
|
.include <bsd.kmod.mk>
|