documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Mon, 05 Mar 2007 14:59:23 +0000
changeset 615 cde783147040
parent 614 1e74a0212418
child 616 b777e26367c5
permissions -rw-r--r--
Removed unnecessary edge in slave configuration FSM graph.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := slave_conf.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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