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.


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