RSDFT-CIPSI-QMC/Manuscript/Makefile

18 lines
243 B
Makefile
Raw Normal View History

2020-07-20 10:23:39 +02:00
TARGET=rsdft-cipsi-qmc.pdf
SRC=rsdft-cipsi-qmc.tex
.PHONY: all
all: $(TARGET)
$(TARGET): $(SRC)
latexmk -pdf $(SRC)
.PHONY: clean
clean:
-rm -f $(TARGET)
follow:
latexmk -pdf -view=pdf -bibtex -pvc -gg -interaction=nonstopmode $(SRC)