documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Thu, 06 Sep 2007 09:28:38 +0000
changeset 708 90bdb315f560
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Fixed EtherCAT addressing problem on big-endian systems. The slaves
address is now a four-byte-array, that is filled with little-endian
(EtherCAT) values on datagram creation.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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