From: Adriana Draghici Date: Fri, 5 Feb 2010 14:32:43 +0000 (+0200) Subject: report - added report.bib and Makefile X-Git-Tag: getopt_long~180 X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=commitdiff_plain;h=0f61bd19b9e29f3b3ca4bed2dd826b13a8634aa9;p=cs-p2p-next.git report - added report.bib and Makefile --- diff --git a/report/Makefile b/report/Makefile new file mode 100644 index 0000000..ff8fe66 --- /dev/null +++ b/report/Makefile @@ -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 index 0000000..d60e486 --- /dev/null +++ b/report/report.bib @@ -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}} +}