1
0
Fork 0
cv/Makefile

14 lines
304 B
Makefile
Raw Normal View History

2013-06-24 16:04:24 +02:00
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) $<