documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Fri, 16 Mar 2007 13:39:19 +0000
changeset 660 582a90a34303
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Configure alternative PDO mapping only on slaves that have PDO sync
managers.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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