documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Mon, 12 Mar 2007 18:21:42 +0000
changeset 656 370aa8c2d1b1
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Slave configuration exclusively from master thread; removed
ec_master_sync_io(); introduced events in the master state machine;
locking of slave scanning and slave configuration through allow_scan
and allow_config flags.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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