Skip to content
Snippets Groups Projects
Commit bcc37312 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Have doc/Makefile send copious output to log files.

(From minimakefile branch.)
parent 4997148a
No related branches found
No related tags found
No related merge requests found
...@@ -16,16 +16,19 @@ version.texinfo: ../version.lisp-expr ...@@ -16,16 +16,19 @@ version.texinfo: ../version.lisp-expr
head -n 1 $^ | perl -ne 'm|\"(.*)\"|; print "\@set VERSION $$1\n"' > $@ head -n 1 $^ | perl -ne 'm|\"(.*)\"|; print "\@set VERSION $$1\n"' > $@
manual-html: asdf.texinfo version.texinfo manual-html: asdf.texinfo version.texinfo
makeinfo --html asdf.texinfo makeinfo --html asdf.texinfo \
2>&1 > manual-html.log || { echo "failed. See log in manual-html.log" ; exit 1 ;}
asdf.html: asdf.texinfo version.texinfo asdf.html: asdf.texinfo version.texinfo
makeinfo --html --no-split --no-headers -o asdf.html asdf.texinfo makeinfo --html --no-split --no-headers -o asdf.html asdf.texinfo \
2>&1 > asdf.html.log || { echo "failed. See log in asdf.html.log" ; exit 1 ;}
asdf.info: asdf.texinfo version.texinfo asdf.info: asdf.texinfo version.texinfo
makeinfo asdf.texinfo makeinfo asdf.texinfo
asdf.pdf: asdf.texinfo version.texinfo asdf.pdf: asdf.texinfo version.texinfo
texi2pdf asdf.texinfo texi2pdf asdf.texinfo \
2>&1 > asdf.pdf.log || { echo "failed. See log in asdf.pdf.log" ; exit 1 ;}
website: all website: all
rsync -lt --no-g ${webfiles} ${website} rsync -lt --no-g ${webfiles} ${website}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment