documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Mon, 17 Sep 2007 09:08:49 +0000
changeset 724 f188f8a0cafd
parent 718 80df6930e7e6
child 752 3d5cd81674bd
permissions -rw-r--r--
Include e1000_suspend() in #ifdef CONFIG_PM.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps fsm_master.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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