diff --git a/doc/Makefile b/doc/Makefile
index 632804cffaf2c11fbb61351a4b2ce8c132254e55..c9c4fce442262c38402cbd84b2c763d8c691677e 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -16,16 +16,19 @@ version.texinfo: ../version.lisp-expr
 	head -n 1 $^ | perl -ne 'm|\"(.*)\"|; print "\@set VERSION $$1\n"' > $@
 
 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
-	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
 	makeinfo asdf.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
 	rsync -lt --no-g ${webfiles} ${website}