lw-build-system/scripts/build.docs.doxygen/build.install-docs

21 lines
477 B
Plaintext
Raw Permalink Normal View History

build_target docs
# create documentation directories
echo "Installing documentation into ${DOCSDIR}"
build_dir_tree "${DOCSDIR}/html" || return 1
# copy across the Doxygen-generated documentation
for file in html/*
do
install_file ${file} ${DOCSDIR}/html 0644 || return 1
done
# copy across the generic files
for file in COPYING README
do
install_file ${file} ${DOCSDIR} 0644 || return 1
done
print_success "Documentation installed"
2007-08-08 13:03:18 +01:00
# vim: syntax=sh:@VIM_MODELINE@