documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Fri, 09 Mar 2007 13:24:15 +0000
changeset 643 78929d878b2c
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Removed X:Y addressing scheme, ec_slave_is_coupler(),
ec_master_calc_addressing(), coupler_index and coupler_subindex variables.
Adapted lsec script and examples.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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