documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Wed, 19 Sep 2007 11:52:58 +0000
changeset 737 5a770085161c
parent 718 80df6930e7e6
child 752 3d5cd81674bd
permissions -rw-r--r--
Master takes mailbox sync manager configurations from EEPROM words
0x0018-0x001b, if no sync manager configurations are provided.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

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

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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