24 lines
734 B
Plaintext
24 lines
734 B
Plaintext
#
|
|
# Prints the PWD : FIXME, this is going to be removed
|
|
#
|
|
^pwd
|
|
^.*/doc
|
|
#
|
|
# KERNELVERSION not being defined in local builds, kill that warning,
|
|
# can ignore it
|
|
#
|
|
^.*/Kconfig.zephyr:[0-9]+: warning: The symbol KERNELVERSION references the non-existent environment variable KERNELVERSION.*
|
|
#
|
|
# Documentation generation, early message
|
|
#
|
|
^cd .* && doxygen doc/doxygen.config
|
|
^srctree=.* SRCARCH=\w+ python scripts/genrest/genrest.py .*$
|
|
# This cuts the sphinx build line; has to be separate because in the
|
|
# middle, we have removed the KERNELVERSION one and a full regex won't match
|
|
^sphinx-build -t \w+ -b html -d [-._/\w]+ -q \. .*
|
|
#
|
|
# Documentation generation, footer message
|
|
#
|
|
^[ \t]*
|
|
^Build finished. The HTML pages are in [-._/\w]+
|