documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Thu, 09 Aug 2007 15:45:56 +0000
changeset 693 e341f1788608
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Switched to tx socket buffer ring to avoid race conditions when multiple
instances call ec_device_send() in short intervals.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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