X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fdocuments.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=91d89bf3cc09a4b3b24345aa849c7f445136b787;hp=0000000000000000000000000000000000000000;hb=636de1179f4e0a94bf6315deadec1f757800e459;hpb=d892e7278ee4e40393966edb2d6c0e37af600817 diff --git a/Makefile b/Makefile new file mode 100644 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 +