docs.sh (433B)
1 #!/bin/bash 2 set -exuo pipefail 3 4 # There is no Doxygen configuration in this repository (doc/doxygen only 5 # holds the GNUnet/Taler tag files), so the documentation job builds the 6 # two things that are actually generated here: the Texinfo manual, via 7 # '--enable-only-doc' (which skips compiling any C), and the Sphinx 8 # handbook under doc/sphinx. 9 10 ./bootstrap 11 ./configure --enable-only-doc 12 13 make 14 15 pushd ./doc/sphinx/ 16 17 make html 18 19 popd