1
0
ml_measurement_error_public/charts/example_1_dag/Makefile
Nathan TeBlunthuis c7fa348220 Copy files into public version.
sio #	new file:   charts/example_2_dag/Makefile
2022-05-26 01:32:07 -07:00

29 lines
391 B
Makefile

#!/usr/bin/make
all: $(patsubst %.tex,%.svg,$(wildcard *.tex)) $(patsubst %.tex,%.png,$(wildcard *.tex))
%.png: %.pdf
convert -density 300 -transparent white $< $@
%.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