documentation/graphs/Makefile
author Dave Page <dave.page@gleeble.com>
Tue, 14 Apr 2015 16:25:44 -0400
changeset 2630 a380cce7d6f0
parent 2589 2b9c78543663
permissions -rw-r--r--
16-ethercat-1.5-frame-corruption.patch
from ethercat-1.5.0-patches-v2.tar.bz2
by Frank Heckenbach f.heckenbach@ at fh-soft.de
Ref: http://lists.etherlab.org/pipermail/etherlab-dev/2014/000404.html
with some additional edits.
#-----------------------------------------------------------------------------
#
# $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

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