documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Wed, 19 Sep 2007 09:07:36 +0000
changeset 734 8c9d62f7c2cd
parent 718 80df6930e7e6
child 752 3d5cd81674bd
permissions -rw-r--r--
Minor fix: Set eeprom_size to 0 on unsuccessful memory allocation.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

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

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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