mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
Areas not covered still [positive functionality wise] are:
- sbuf_{clear,get,set}_flags
- sbuf_new (in particular, with fixed buffers, etc).
Some basic negative testing has been added, but more will be added in the
future.
This work was in part to validate work done by cem in r288223, and ian
before that.
MFC after: 2 months
Sponsored by: Dell EMC Isilon
19 lines
283 B
Makefile
19 lines
283 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE=lib${LIB}
|
|
LIB= sbuf
|
|
SHLIBDIR?= /lib
|
|
SRCS= subr_prf.c subr_sbuf.c
|
|
|
|
SHLIB_MAJOR = 6
|
|
|
|
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
|
|
VERSION_DEF= ${.CURDIR}/Version.def
|
|
|
|
.include <src.opts.mk>
|
|
|
|
.PATH: ${SRCTOP}/sys/kern
|
|
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.lib.mk>
|