documentation/graphs/Makefile
author Richard Hacker <ha@igh-essen.com>
Wed, 22 Aug 2007 20:55:24 +0000
changeset 704 de30f0e39adc
parent 616 b777e26367c5
child 718 80df6930e7e6
permissions -rw-r--r--
Added Beckhoff_EL1004v2_PDO_Inputs to ecdb.h
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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