free-sw-rh-interns/graphs/Makefile

12 lines
148 B
Makefile
Raw Normal View History

2019-05-09 03:03:27 +00:00
.PHONY : all clean
PNG_FILES = $(patsubst %.dot,%.png,$(wildcard *.dot))
all: $(PNG_FILES)
%.png: %.dot
dot -Tpng $< -o $@
clean:
rm -f *.png