]> git.llucax.com Git - z.facultad/75.00/informe.git/blob - Makefile
Agregar referencias sobre NaN y ABI
[z.facultad/75.00/informe.git] / Makefile
1 # Makefile for Sphinx documentation
2 #
3
4 # You can set these variables from the command line.
5 SPHINXOPTS    =
6 SPHINXBUILD   = sphinx-build
7 PAPER         =
8
9 # Internal variables.
10 PAPEROPT_a4     = -D latex_paper_size=a4
11 PAPEROPT_letter = -D latex_paper_size=letter
12 ALLSPHINXOPTS   = -d build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) source
13
14 .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
15
16 all: pdf
17
18 pdf: latex
19         @$(MAKE) -C build/latex all-pdf
20
21 clean:
22         -rm -rf build/*
23
24 latex:
25         $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) build/latex
26         @sed -i 's/\\chapter{Glosario}/\\chapter*{Glosario}\n\\addcontentsline{toc}{chapter}{Glosario}/' build/latex/tesis.tex
27         @sed -i 's/^\\usepackage{sphinx}$$/\\usepackage[final]{varioref} \\usepackage{sphinx}/' build/latex/tesis.tex
28         @sed -i 's/, \\py@release//' build/latex/sphinx.sty
29         @sed -i '/-makeindex/d' build/latex/Makefile
30         @cp manual.cls build/latex/
31         @./bibsort.py
32         @echo
33         @echo "Build finished; the LaTeX files are in build/latex."
34         @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
35               "run these through (pdf)latex."
36