documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Mon, 12 Mar 2007 13:59:06 +0000
changeset 651 8c11399cc911
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Fixed skipped datagrams when not in FSM idle phase.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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