1
0
Files
ml_measurement_error_overleaf/charts/example_3_dag/#Makefile#
2023-02-23 18:17:52 +00:00

26 lines
288 B
Makefile

#!/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