summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9c49b80..1115809 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
# LaTeX basic Makefile
#
-# WTFPL, 2016 Romain Porte (MicroJoe) <microjoe@microjoe.org>
+# WTFPL, 2016 - 2018 Romain Porte (MicroJoe) <microjoe@microjoe.org>
#
# Inspirated from
# http://tex.stackexchange.com/questions/40738/how-to-properly-make-a-latex-project
@@ -17,6 +17,10 @@ PRINC=src/main.tex
# Main rule: Construct the PDF
all: $(PDF)
+#
+# Live: automatic watch and build of the PDF file
+live: $(PRINC) $(SOURCES)
+ source ~/.bashrc && latexmk -pvc -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $(PRINC)
# Construct the PDF file from sources
$(PDF): $(PRINC) $(SOURCES)
@@ -45,4 +49,6 @@ clean:
mrproper: clean
@echo Removing all PDF files...
@rm -f *.pdf
+ @echo Removing all DVI files...
+ @rm -f *.dvi
@echo Done