report - added report.bib and Makefile
authorAdriana Draghici <adriana008@gmail.com>
Fri, 5 Feb 2010 14:32:43 +0000 (16:32 +0200)
committerAdriana Draghici <adriana008@gmail.com>
Fri, 5 Feb 2010 14:32:43 +0000 (16:32 +0200)
report/Makefile [new file with mode: 0644]
report/report.bib [new file with mode: 0644]

diff --git a/report/Makefile b/report/Makefile
new file mode 100644 (file)
index 0000000..ff8fe66
--- /dev/null
@@ -0,0 +1,16 @@
+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) *~
diff --git a/report/report.bib b/report/report.bib
new file mode 100644 (file)
index 0000000..d60e486
--- /dev/null
@@ -0,0 +1,9 @@
+@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}}
+}