freebsd-src/lib/libutil++/Makefile
John Baldwin 1595031258 libutil++: Rename manpage source files to avoid colons
To permit checking the sources out on systems such as Windows with
more restrictive file name requirements, rename the manpage source
files to replace colons with underscrores.  Use MANSRC.foo to point
<bsd.man.mk> at the new source file names.

Reviewed by:	ivy
Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D51794
2025-08-26 16:44:38 -04:00

23 lines
378 B
Makefile

LIB_CXX= util++
INTERNALLIB= true
SHLIB_MAJOR= 1
SRCS= stringf.cc
MAN+= freebsd::FILE_up.3 \
freebsd::addrinfo_up.3 \
freebsd::fd_up.3 \
freebsd::malloc_up.3 \
freebsd::nvlist_up.3 \
freebsd::pidfile.3 \
freebsd::stringf.3
.for page in ${MAN}
MANSRC.${page}= ${page:S/:/_/g}
.endfor
.include <src.opts.mk>
HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests
.include <bsd.lib.mk>