documentation/graphs/Makefile
author Florian Pose <fp@igh-essen.com>
Thu, 02 Oct 2008 09:56:39 +0000
branchstable-1.3
changeset 1760 036f19bde00b
parent 1746 72e7507b3f1b
permissions -rw-r--r--
Fixed lsec for terminals that do not support getting the terminal width.
#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------

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

all: $(GRAPHS)

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

clean:
	@rm -f *.ps

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