documentation/graphs/Makefile
author Gavin Lambert <gavinl@compacsort.com>
Tue, 14 Apr 2015 09:34:15 -0400
changeset 2619 f2bc4000e47a
parent 2589 2b9c78543663
permissions -rw-r--r--
When detaching a slave from a slave_config, fail any pending register requests instead of leaving them BUSY forever.
#-----------------------------------------------------------------------------
#
# $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

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