Add Literature Notes document
[ipdf/documents.git] / Makefile
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..91d89bf
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,28 @@
+TARGETS = ProjectProposalSam.pdf ProjectProposalDavid.pdf LiteratureNotes.pdf
+
+all : $(TARGETS) clean
+
+rebuild : 
+       make clean_full
+       make all
+
+%.pdf : %.tex papers.bib
+       # Incoming wall of text
+       pdflatex $*
+       bibtex $*
+       pdflatex $*
+       pdflatex $*
+
+clean :
+       # LaTeX makes way too many output files; get rid of them all
+       rm -f *.out
+       rm -f *~
+       rm -f *.log
+       rm -f *.aux
+       rm -f *.bbl
+       rm -f *.blg
+       rm -f *.toc
+
+clean_full : clean
+       rm -f *.pdf
+

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