ia64/xen-unstable
annotate docs/xen-api/Makefile @ 13341:3040ba0f2d3d
When booting via xm, only run the bootloader if it's in non-interactive mode:
otherwise we lose the user's named kernel and try to bootload the temporary
file pygrub returned.
Signed-off-by: John Levon <john.levon@sun.com>
otherwise we lose the user's named kernel and try to bootload the temporary
file pygrub returned.
Signed-off-by: John Levon <john.levon@sun.com>
author | Tim Deegan <Tim.Deegan@xensource.com> |
---|---|
date | Tue Jan 09 13:24:45 2007 +0000 (2007-01-09) |
parents | a2d6e4a53e7a |
children | ea3c75204555 |
rev | line source |
---|---|
ewan@12152 | 1 TEX := $(wildcard *.tex) |
ewan@12152 | 2 EPS := $(wildcard *.eps) |
ewan@12152 | 3 EPSDOT := $(patsubst %.dot,%.eps,$(wildcard *.dot)) |
ewan@12152 | 4 |
ewan@12152 | 5 .PHONY: all |
ewan@12152 | 6 all: xenapi.pdf xenapi.ps |
ewan@12152 | 7 |
ewan@12152 | 8 xenapi.dvi: $(TEX) $(EPS) $(EPSDOT) |
ewan@12152 | 9 latex xenapi.tex |
ewan@12152 | 10 latex xenapi.tex |
ewan@12152 | 11 |
ewan@12152 | 12 %.pdf: %.ps |
ewan@12152 | 13 ps2pdf $< $@ |
ewan@12152 | 14 |
ewan@12152 | 15 %.ps: %.dvi |
ewan@12152 | 16 dvips $< -o $@ |
ewan@12152 | 17 |
ewan@12152 | 18 %.eps: %.dot |
ewan@12152 | 19 dot -Tps $< >$@ |
ewan@12152 | 20 |
ewan@12152 | 21 .PHONY: clean |
ewan@12152 | 22 clean: |
ewan@12152 | 23 rm -f *.pdf *.ps *.dvi *.aux *.log $(EPSDOT) |