documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Thu, 04 Oct 2007 08:40:41 +0000
branchstable-1.3
changeset 1749 696dd9f22777
parent 1746 72e7507b3f1b
permissions -rw-r--r--
merge -r972:974 trunk -> branches/stable-1.3 (mapping source, new slave info file)
#-----------------------------------------------------------------------------
#
# $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

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