blob: 2b6559835dbf0c3913ca18a16cbe73e323d7014b [file] [log] [blame]
Harald Welteb53e2bf2020-08-21 16:33:42 +02001SUBDIRS = \
2 examples \
3 manuals \
4 $(NULL)
5
6msc: \
7 $(NULL)
8
9dot: \
10 $(NULL)
11
12$(builddir)/%.png: $(srcdir)/%.msc
13 mscgen -T png -o $@ $<
14
15$(builddir)/%.png: $(srcdir)/%.dot
16 dot -Tpng $< > $@
17
18.PHONY: poll
19poll:
20 while true; do $(MAKE) msc dot; sleep 1; done