diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 | 
1 files changed, 7 insertions, 1 deletions
@@ -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  | 
