documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Tue, 18 Dec 2007 16:56:52 +0000
changeset 769 2195c2ea37b4
parent 752 3d5cd81674bd
child 804 f1c8a12919bc
permissions -rw-r--r--
Fixed normal/expedited bug at CoE upload; more robust behaviour, when
fragments_left is set.
#-----------------------------------------------------------------------------
#
# $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

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