gdb-bof-cauldron-2019/Makefile

12 lines
147 B
Makefile
Raw Normal View History

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