documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Fri, 16 Mar 2007 11:23:08 +0000
changeset 659 d7c5a958bad0
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Removed unecessary clearing of EoE handlers in master init function;
fixed possible bug on failing to initialize or add master kobject.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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