Initial commit

This commit is contained in:
Carlos Galindo 2019-12-10 13:29:19 +01:00
commit bd085e05eb
4 changed files with 50 additions and 0 deletions

9
img/Makefile Normal file
View file

@ -0,0 +1,9 @@
dotfiles = $(shell ls *.dot | sed -e 's/\.dot/\.pdf/')
all: $(dotfiles)
%.pdf: %.dot
dot -Tpdf $< -o $@
clean:
rm -f *.pdf