diff --git a/latex/Makefile b/latex/Makefile new file mode 100644 index 0000000..77f8d57 --- /dev/null +++ b/latex/Makefile @@ -0,0 +1,14 @@ +SRC=ising_model +PDFLATEX=pdflatex +BIBTEX=bibtex + +.PHONY: clean + +all: + $(PDFLATEX) $(SRC) + $(BIBTEX) $(SRC) + $(PDFLATEX) $(SRC) + $(PDFLATEX) $(SRC) + +clean: + $(RM) *.aux *.log *.out *Notes.bib