diff options
author | Cem Keylan <cem@ckyln.com> | 2021-01-28 16:55:26 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-01-28 16:55:26 +0300 |
commit | 93c5f112cae3eab4d1ff28f914a77e2a74d98216 (patch) | |
tree | 693e21af38297b1f850f07c19fefe7c7fcac8445 /default.do | |
parent | 4bb8046231dd10eec27aff6a409e9f428ad5ac73 (diff) | |
download | docs-93c5f112cae3eab4d1ff28f914a77e2a74d98216.tar.gz |
docs: update
Diffstat (limited to 'default.do')
-rw-r--r-- | default.do | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -26,10 +26,14 @@ case "$1" in ;; htmldocs) redo-ifchange carbslinux.org carbslinux.texi install.txt install.html - rm -f "${HTMLDIR:?}/"* - makeinfo --html -o "${HTMLDIR}" "${TEXI}" + mkdir -p "${HTMLDIR:?}" + rm -rf "$HTMLDIR/carbslinux" \ + "$HTMLDIR/carbslinux.html" \ + "$HTMLDIR/install.html" \ + "$HTMLDIR/install.txt" + makeinfo --html -o "${HTMLDIR}/carbslinux" "${TEXI}" + makeinfo --html --no-split -o "${HTMLDIR}/carbslinux.html" "${TEXI}" cp install.txt "${HTMLDIR}/install.txt" - cp install.html "${HTMLDIR}/install.html" PHONY ;; *.txt) |