Post #2259639
2026-04-28 16:59 UTC
@nuintari Question because I am inexperienced in real-world usage of Make:
why did you write it as a shell loop and not something like:
PNGS := $($(wildcard *.dot):.dot=.png)
all: $(PNGS)
%.png: %.dot:
dot -Tpng "$<" > "$@"
Replies (0)
No replies.