documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Wed, 03 Oct 2007 09:19:01 +0000
changeset 761 f1a23fd26052
parent 752 3d5cd81674bd
child 804 f1c8a12919bc
permissions -rw-r--r--
merge -r969:970 branches/stable-1.3 -> trunk (fsm_coe_map.[ch] to dist)
#-----------------------------------------------------------------------------
#
# $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

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