Update on Overleaf.
This commit is contained in:
25
charts/example_2_dag/#Makefile#
Normal file
25
charts/example_2_dag/#Makefile#
Normal file
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/make
|
||||
|
||||
all: $(patsubst %.tex,%.svg,$(wildcard *.tex))
|
||||
|
||||
%.svg: %.pdf
|
||||
/usr/bin/inkscape $< --export-plain-svg=$@
|
||||
|
||||
%.pdf: %.tex
|
||||
latexmk -f -pdf $<
|
||||
|
||||
clean:
|
||||
latexmk -C *.tex
|
||||
rm -f *.tmp
|
||||
rm -f vc
|
||||
rm *.svg
|
||||
|
||||
viewpdf: all
|
||||
evince *.pdf
|
||||
|
||||
vc:
|
||||
vc-git
|
||||
|
||||
pdf: all
|
||||
|
||||
.PHONY: clean all
|
||||
Reference in New Issue
Block a user