ODT
/
rero-ils-graphs
Archived
1
0
Fork 0
This repository has been archived on 2020-03-05. You can view files and clone it, but cannot push or open issues/pull-requests.
rero-ils-graphs/by_json/Makefile

12 lines
188 B
Makefile

all: orgas.svg
# All .dot files are generated by gen_%.sh file (gen_orgas.sh for example)
%.dot: gen_%.sh
bash "$<" "$@"
%.svg: %.dot
dot -Tsvg "$<" -o "$@"
clean:
rm -f *.svg *.dot