documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Tue, 07 Aug 2007 08:37:33 +0000
changeset 681 bcc71748b66c
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Fixed distribution for e1000.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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