documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Fri, 10 Aug 2007 08:58:39 +0000
changeset 694 54a169382e28
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
e1000 also supporting PCI MSI interrupts.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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