changeset 10:43abd17132ef

Added a makefile for easy building and cleaning for them UNIX folk.
author Robert Smith <quadricode@gmail.com>
date Fri, 01 Oct 2010 15:14:50 -0500
parents 4546e0e6843c
children bb21b03563fb
files Makefile
diffstat 1 files changed, 27 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,27 @@
+
+FILENAME = thesis
+EXTENSION = tex
+
+LATEX = latex
+PDFLATEX = pdflatex
+DVIPS = dvips
+DVIPDF = dvipdf
+BIBTEX = bibtex
+
+
+all: pdf
+
+pdf: bib
+	$(PDFLATEX) $(FILENAME)
+	$(PDFLATEX) $(FILENAME)
+	$(PDFLATEX) $(FILENAME)
+
+bib:
+	$(PDFLATEX) $(FILENAME)
+	$(BIBTEX) $(FILENAME)
+
+clean:
+	rm -f *aux *log *toc
+
+sparkly: clean
+	rm -f *dvi *pdf *ps
\ No newline at end of file