aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Makefile
diff options
context:
space:
mode:
authorkaf24@freefall.cl.cam.ac.uk <kaf24@freefall.cl.cam.ac.uk>2004-11-03 08:32:36 +0000
committerkaf24@freefall.cl.cam.ac.uk <kaf24@freefall.cl.cam.ac.uk>2004-11-03 08:32:36 +0000
commit149abe0ab4480bc670eb1927a7aacdeb5799cf99 (patch)
treebe35b731a9b5f69b8e80eef4a0262343abbb7a4d /docs/Makefile
parent2259b4a607c7eb7cdfe1ce889a2bed327ac7c1aa (diff)
downloadxen-149abe0ab4480bc670eb1927a7aacdeb5799cf99.tar.gz
xen-149abe0ab4480bc670eb1927a7aacdeb5799cf99.tar.bz2
xen-149abe0ab4480bc670eb1927a7aacdeb5799cf99.zip
bitkeeper revision 1.1159.152.3 (418897a4CxX9i8wXDd9o1ZAah8MBmQ)
Fix parallel make problems (some rules had multiple dependencies which themselves were inter-dependent). Fix netbsd build when 'uname -i' is unavailable -- default to i386.
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 528c4f53f2..aa2b8a1aee 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -30,10 +30,10 @@ install: all
pdf/%.pdf: ps/%.ps
mkdir -p pdf ; ps2pdf $< $@
-ps/%.ps: %.dvi $(GFX)
+ps/%.ps: %.dvi
mkdir -p ps ; dvips -Ppdf -G0 -o $@ $<
-%.dvi: src/%.tex
+%.dvi: src/%.tex $(GFX)
latex $< >/dev/null
if [ -e $*.toc ] ; then latex $< >/dev/null ; fi