documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Mon, 05 Mar 2007 14:51:53 +0000
changeset 614 1e74a0212418
child 616 b777e26367c5
permissions -rw-r--r--
Added DOT graph for slave configuration FSM.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := slave_conf.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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