Index: doc/theses/mubeen_zulfiqar_MMath/.gitignore
===================================================================
--- doc/theses/mubeen_zulfiqar_MMath/.gitignore	(revision ab5498ec169672083f4e8bcaacb08d9f12fde8a1)
+++ doc/theses/mubeen_zulfiqar_MMath/.gitignore	(revision ab5498ec169672083f4e8bcaacb08d9f12fde8a1)
@@ -0,0 +1,8 @@
+# Intermediate Results:
+out/
+
+# Final Files:
+*.pdf
+
+# The Makefile here is not generated.
+!Makefile
Index: doc/theses/mubeen_zulfiqar_MMath/Makefile
===================================================================
--- doc/theses/mubeen_zulfiqar_MMath/Makefile	(revision ab5498ec169672083f4e8bcaacb08d9f12fde8a1)
+++ doc/theses/mubeen_zulfiqar_MMath/Makefile	(revision ab5498ec169672083f4e8bcaacb08d9f12fde8a1)
@@ -0,0 +1,45 @@
+### Makefile from Andrew Beach's Masters Thesis
+
+DOC=thesis.pdf
+BUILD=out
+TEXSRC=$(wildcard *.tex)
+BIBSRC=$(wildcard *.bib)
+STYSRC=$(wildcard *.sty)
+CLSSRC=$(wildcard *.cls)
+TEXLIB= .:../../LaTeXmacros:${BUILD}:
+BIBLIB= .:../../bibliography
+
+# Since tex programs like to add their own file extensions:
+BASE= ${DOC:%.pdf=%}
+
+### Special Rules:
+
+.PHONY: all clean deepclean
+
+### Commands:
+LATEX=TEXINPUTS=${TEXLIB} pdflatex -halt-on-error -output-directory=${BUILD}
+#BIBTEX=BIBINPUTS=${BIBLIB} bibtex
+#GLOSSARY=INDEXSTYLE=${BUILD} makeglossaries-lite
+
+### Rules and Recipies:
+
+all: ${DOC}
+
+${BUILD}/${DOC}: ${TEXSRC} ${BIBSRC} ${STYSRC} ${CLSSRC} Makefile | ${BUILD}
+	${LATEX} ${BASE}
+#	${BIBTEX} ${BUILD}/${BASE}
+#	${LATEX} ${BASE}
+#	${GLOSSARY} ${BUILD}/${BASE}
+#	${LATEX} ${BASE}
+
+${DOC}: ${BUILD}/${DOC}
+	cp $< $@
+
+${BUILD}:
+	mkdir $@
+
+clean:
+	-@rm -rv ${BUILD}
+
+deepclean: clean
+	-@rm -v ${DOC}
Index: doc/theses/mubeen_zulfiqar_MMath/thesis.tex
===================================================================
--- doc/theses/mubeen_zulfiqar_MMath/thesis.tex	(revision ab5498ec169672083f4e8bcaacb08d9f12fde8a1)
+++ doc/theses/mubeen_zulfiqar_MMath/thesis.tex	(revision ab5498ec169672083f4e8bcaacb08d9f12fde8a1)
@@ -0,0 +1,12 @@
+\documentclass[letterpaper,12pt,titlepage,oneside,final]{book}
+
+\usepackage{amsmath,amssymb,amsfonts}
+
+\begin{document}
+
+\section{Benchmark Suite}
+
+\section{Memory Allocator}
+
+\end{document}
+
