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

12 lines
188 B
Makefile
Raw Normal View History

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