documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Tue, 19 Feb 2008 16:09:58 +0000
changeset 801 6b1e2b0ed8bc
parent 752 3d5cd81674bd
child 804 f1c8a12919bc
permissions -rw-r--r--
Cleaned up Pdo mapping and configuration state machines.
#-----------------------------------------------------------------------------
#
# $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

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