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.
1234567891011121314 |
- dotfiles := $(wildcard *.dot)
- images := $(patsubst %.dot,%.png,$(wildcard *.dot))
-
- all: $(images)
-
- %.png: %.dot
- dot -Tpng $< > $@
-
- .PHONY: clean distclean
-
- clean:
- -rm $(images)
-
- distclean: clean
|