new variable XMLDOCS_NO_SRCS

if set there will be no implicit adding of files to SRCS, which may
break `make -n', or `make -j1', or dependencies checking

PR: 222631
This commit is contained in:
Wolfram Schneider 2017-09-28 16:59:08 +00:00
parent 6e9e5961ed
commit 1ce60faecf
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=50951

View file

@ -338,7 +338,10 @@ NO_DATA.${_ID}=
XSLTPROCOPTS.${_ID}?= ${XSLTPROCOPTS}
GENDOCS+= ${TARGET.${_ID}}
.if !defined(XMLDOCS_NO_SRCS) || empty(XMLDOCS_NO_SRCS)
SRCS+= ${TARGET.${_ID}}
.endif
.if !defined(NO_DATA.${_ID}) || empty(NO_DATA.${_ID})
DATA+= ${TARGET.${_ID}}
.endif