No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 198B

1234567891011121314
  1. dotfiles := $(wildcard *.dot)
  2. images := $(patsubst %.dot,%.png,$(wildcard *.dot))
  3. all: $(images)
  4. %.png: %.dot
  5. dot -Tpng $< > $@
  6. .PHONY: clean distclean
  7. clean:
  8. -rm $(images)
  9. distclean: clean