documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Thu, 03 May 2007 14:29:21 +0000
changeset 664 18c48cb7de06
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Introduced frames_timed_out flag to notice bus failure when link down is
not detected.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

%.ps: %.dot
	dot -Tps -o $@ $<

clean:
	@rm -f *.ps

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