Skip to content

Instantly share code, notes, and snippets.

@tektoh
Created February 6, 2015 00:47
Show Gist options
  • Save tektoh/f5d97c31935bc5419d57 to your computer and use it in GitHub Desktop.
Save tektoh/f5d97c31935bc5419d57 to your computer and use it in GitHub Desktop.
DOT(Graphviz)をPNGにするMakefile
DOTFILES = $(wildcard *.dot)
PNGFILES = $(DOTFILES:.dot=.png)
.SUFFIXES: .png .dot
.dot.png:
dot -Tpng $< > $@
png: $(PNGFILES)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment