Automatic commit of irc logs
[ipdf/documents.git] / Makefile
1 TARGETS = LiteratureNotes.pdf
2
3 all : $(TARGETS)
4
5 rebuild : 
6         make clean_full
7         make all
8
9 %.pdf : %.tex papers.bib
10         # Incoming wall of text
11         pdflatex -shell-escape $*
12         bibtex $*
13         pdflatex -shell-escape $*
14         pdflatex -shell-escape $*
15
16 clean :
17         # LaTeX makes way too many output files; get rid of them all
18         rm -f *.out
19         rm -f *~
20         rm -f *.log
21         rm -f *.aux
22         rm -f *.bbl
23         rm -f *.blg
24         rm -f *.toc
25
26 clean_full : clean
27         rm -f $(TARGETS)
28

UCC git Repository :: git.ucc.asn.au