documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Wed, 07 Mar 2007 13:29:29 +0000
changeset 630 1b755b7342eb
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Layed out FMMU structure and methods to own files.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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