mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
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
23 lines
378 B
Makefile
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>
|