documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Wed, 19 Sep 2007 09:37:01 +0000
changeset 735 0773628aabab
parent 718 80df6930e7e6
child 752 3d5cd81674bd
permissions -rw-r--r--
Calculate checksum when writing EEPROM or alias address.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

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

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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