--- /dev/null
+BASE = report
+TEX_FILE = $(BASE).tex
+PDF_FILE = $(TEX_FILE:.tex=.pdf)
+PDFLATEX = pdflatex
+BIBTEX = bibtex
+
+$(PDF_FILE): $(BASE).tex
+ $(PDFLATEX) $<
+ $(BIBTEX) $(BASE)
+ $(PDFLATEX) $<
+ $(PDFLATEX) $<
+ rm -f *~ *.aux *.log *.blg *.bbl
+
+clean:
+ -rm -f *~ *.aux *.log *.blg *.bbl
+ -rm -f $(PDF_FILE) *~
--- /dev/null
+@book{anderson:08,
+ title = {Security Engineering: A Guide to Building Dependable Distributed Systems},
+ author = {Ross J. Anderson},
+ edition = {Second},
+ publisher = {Wiley},
+ month = {April},
+ year = {2008},
+ annote = {\url{http://www.cl.cam.ac.uk/~rja14/book.html}}
+}