manus_continuum_granular1

manuscript files for first continuum-till paper
git clone git://src.adamsgaard.dk/manus_continuum_granular1
Log | Files | Refs

commit 66f09cf042d4bd6f25a18b1877f58cae9f9ace1d
parent 25e6142da915e88af81b9d2b46dab6f3a05080d6
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon, 24 Jun 2019 10:31:22 +0200

Add `edit` target

Diffstat:
MMakefile | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -4,12 +4,16 @@ DEPS=$(NAME).tex $(NAME).pdf: $(DEPS) BIBnew.bib ~/articles/own/BIBnew.bib latexmk -pdf $(NAME).tex -.phony: auto +.PHONY: auto auto: $(DEPS) #echo $^ | tr ' ' '\n' | entr -s 'make $(NAME).pdf' latexmk -pvc -pdf -f $(NAME).tex -.phony: view +.PHONY: edit +edit: $(DEPS) + $$EDITOR $< + +.PHONY: view view: $(NAME).pdf xdg-open $< &