|
all: tree.svg tree2.svg table2.svg table3.svg
|
|
touch $@
|
|
# $^ -> finished $@ at $(shell date)
|
|
|
|
%.svg: %.pdf
|
|
pdf2svg $^ $@
|
|
# $^ -> finished $@ at $(shell date)
|
|
|
|
%.pdf: %.tex
|
|
latexmk -pdf $^ < /dev/null
|
|
# $^ -> finished $@ at $(shell date)
|
|
|
|
IGNORED = $(shell git ls-files --ignored --exclude-standard --others)
|
|
|
|
clean:
|
|
rm -rfv $(IGNORED)
|
|
# $^ -> finished $@ at $(shell date)
|