aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Simple/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'docs/Simple/Makefile')
-rw-r--r--docs/Simple/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/Simple/Makefile b/docs/Simple/Makefile
new file mode 100644
index 0000000..e55adc9
--- /dev/null
+++ b/docs/Simple/Makefile
@@ -0,0 +1,15 @@
+main.pdf: main.tex
+ pdflatex main.tex
+ bibtex main
+ pdflatex main.tex
+
+
+.PHONY: clean
+clean:
+ rm -f main.pdf
+ rm -f main.aux
+ rm -f main.log
+ rm -f main.bbl
+ rm -f main.blg
+ rm -f main.out
+