documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Mon, 24 Sep 2007 07:12:04 +0000
changeset 752 3d5cd81674bd
parent 718 80df6930e7e6
child 804 f1c8a12919bc
permissions -rw-r--r--
Added state machine graph for CoE mapping state machine.
#-----------------------------------------------------------------------------
#
# $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

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