documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Wed, 30 Apr 2008 09:52:41 +0000
branchstable-1.3
changeset 1753 124eb40a2818
parent 1746 72e7507b3f1b
permissions -rw-r--r--
Sync manager size is always the total size of the assigned Pdos, if
there are any.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := \
	fsm_slave_conf.ps \
	fsm_pdo_mapping.ps \
	fsm_master.ps \
	fsm_coe_map.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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