documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Wed, 12 Sep 2007 13:10:15 +0000
changeset 715 f12ff7c08623
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Added --enable-eoe conditional.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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