Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Add guest build manual
[palacios.git] / manual / guest_build / Makefile
1 LATEX2E = latex
2 BIBTEX = bibtex
3 DVIPS = dvips
4 XDVI = xdvi
5 PS2PDF = ps2pdf -dMaxSubsetPct=100 -dCompatibilityLevel=1.3 -dSubsetFonts=true -dEmbedAllFonts=true -dPDFSETTINGS=/prepress
6
7 TEXDOCS = Palacios_Guest_Build.tex 
8 DVIDOCS = $(TEXDOCS:.tex=.dvi)
9 ERASEABLEPSDOCS=$(TEXDOCS:.tex=.ps)
10 PSDOCS  = $(ERASEABLEPSDOCS) $(WORDDOCS:.doc=.ps) 
11 PDFDOCS = $(PSDOCS:.ps=.pdf)
12
13 all: $(PDFDOCS)  $(PSDOCS) $(DVIDOCS)
14
15 %.pdf: %.ps
16         $(PS2PDF) $< $(@F)
17
18 %.ps : %.dvi
19         $(DVIPS) -t letter -f $< -o $(@F)
20
21 %.dvi: %.tex
22         $(LATEX2E) $<
23
24
25 bib: 
26         -$(LATEX2E) Palacios_Guest_Build
27         -$(LATEX2E) Palacios_Guest_Build
28         -$(BIBTEX)  Palacios_Guest_Build
29         -$(LATEX2E) Palacios_Guest_Build
30         -$(LATEX2E) Palacios_Guest_Build
31
32
33 clean:
34         -rm -f *.dvi *.pdf $(ERASEABLEPSDOCS)