documentation/graphs/Makefile
author Gavin Lambert <gavinl@compacsort.com>
Sat, 31 May 2014 15:37:33 +1200
changeset 2617 559f2f9c5b08
parent 2589 2b9c78543663
permissions -rw-r--r--
Do not force the DC reference clock to OP; if it is not configured it may refuse and flood the logs.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := \
	fsm_change \
	fsm_eoe \
	fsm_master \
	fsm_pdo_conf \
	fsm_pdo_entry_conf \
	fsm_pdo_entry_read \
	fsm_pdo_read \
	fsm_sii \
	fsm_slave_conf \
	fsm_slave_scan

#-----------------------------------------------------------------------------

PDF = $(addsuffix .pdf,$(GRAPHS))

#-----------------------------------------------------------------------------

all: pdf

pdf: $(PDF)

%.pdf: %.dot
	dot -Tpdf -o $@ $<

clean:
	@rm -f *.pdf

#-----------------------------------------------------------------------------