aboutsummaryrefslogtreecommitdiffstats
path: root/doc/charts/Makefile.am
blob: 99b35f5ce5431c257990683f4846825405350b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
msc: \
	$(builddir)/pfcp_msgs.png \
	$(builddir)/pfcp_msgs_gtp.png \
	$(NULL)

dot: \
	$(builddir)/pfcp_overview.png \
	$(builddir)/pfcp_cp_peer_fsm.png \
	$(builddir)/pfcp_up_peer_fsm.png \
	$(builddir)/pfcp_heartbeat_fsm.png \
	$(builddir)/pfcp_cp_session_fsm.png \
	$(builddir)/pfcp_up_session_fsm.png \
	$(builddir)/pfcp_and_gtp.png \
	$(NULL)

$(builddir)/%.png: $(srcdir)/%.msc
	mscgen -T png -o $@ $<

$(builddir)/%.png: $(srcdir)/%.dot
	dot -Tpng $< > $@

$(srcdir)/%.msc: $(srcdir)/%.ladder
	@which ladder_to_msc.py || (echo 'PLEASE POINT YOUR $$PATH AT libosmocore/contrib/ladder_to_msc.py' && false)
	ladder_to_msc.py -i $< -o $@

.PHONY: poll
poll:
	while true; do $(MAKE) msc dot; sleep 1; done