Initialized repository.

This commit is contained in:
Alexis Lahouze
2013-06-24 16:04:24 +02:00
commit f21b589055
27 changed files with 2043 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
TEX=rubber -d
TEXs=$(wildcard *.tex)
PDFs=$(TEXs:.tex=.pdf)
default: $(PDFs)
clean:
rm -f *.blg *.log *.out *.aux *.toc *.bbl *.mtc* *.maf *.lof *.lot *.som *.pdf sections/*.aux
keeppdf:
rm -f *.blg *.log *.out *.aux *.toc *.bbl *.mtc* *.maf *.lof *.lot *.som sections/*.aux
%.pdf: %.tex
$(TEX) $<