aboutsummaryrefslogtreecommitdiffstats
path: root/docs/xen-api/Makefile
diff options
context:
space:
mode:
authorEwan Mellor <ewan@xensource.com>2006-10-25 20:34:26 +0100
committerEwan Mellor <ewan@xensource.com>2006-10-25 20:34:26 +0100
commitf41edb084362b79734eb15d43ee9520468099f13 (patch)
tree6bdec538902225c1bf02a8a67aa328f3be12c51f /docs/xen-api/Makefile
parent947025bc2fe5a8c5af85c4116a3f1891b7f570cb (diff)
downloadxen-f41edb084362b79734eb15d43ee9520468099f13.tar.gz
xen-f41edb084362b79734eb15d43ee9520468099f13.tar.bz2
xen-f41edb084362b79734eb15d43ee9520468099f13.zip
Import Xen Management API Draft, 0.4.3, from
http://wiki.xensource.com/xenwiki/XenApi Signed-off-by: Ewan Mellor <ewan@xensource.com>
Diffstat (limited to 'docs/xen-api/Makefile')
-rw-r--r--docs/xen-api/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/xen-api/Makefile b/docs/xen-api/Makefile
new file mode 100644
index 0000000000..7dfb1bfbec
--- /dev/null
+++ b/docs/xen-api/Makefile
@@ -0,0 +1,23 @@
+TEX := $(wildcard *.tex)
+EPS := $(wildcard *.eps)
+EPSDOT := $(patsubst %.dot,%.eps,$(wildcard *.dot))
+
+.PHONY: all
+all: xenapi.pdf xenapi.ps
+
+xenapi.dvi: $(TEX) $(EPS) $(EPSDOT)
+ latex xenapi.tex
+ latex xenapi.tex
+
+%.pdf: %.ps
+ ps2pdf $< $@
+
+%.ps: %.dvi
+ dvips $< -o $@
+
+%.eps: %.dot
+ dot -Tps $< >$@
+
+.PHONY: clean
+clean:
+ rm -f *.pdf *.ps *.dvi *.aux *.log $(EPSDOT)