Files
ethercat/documentation/graphs/Makefile
T
Florian Pose 593a5fda9c Changed terms "Pdo mapping" -> "Pdo assignment" and "Pdo configuration"
-> "Pdo mapping"; created ecrt_slave_config_pdo_assign_clear() and
ecrt_slave_config_pdo_mapping_clear().
2008-04-03 13:34:13 +00:00

34 lines
685 B
Makefile

#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------
GRAPHS := \
fsm_coe_map \
fsm_master \
fsm_pdo_assign \
fsm_pdo_mapping \
fsm_slave_conf \
fsm_slave_scan
#-----------------------------------------------------------------------------
PS = $(addsuffix .ps,$(GRAPHS))
PDF = $(addsuffix .pdf,$(GRAPHS))
#-----------------------------------------------------------------------------
all: $(PDF)
%.ps: %.dot
dot -Tps -o $@ $<
%.pdf: %.ps
ps2pdf $<
clean:
@rm -f *.ps *.pdf
#-----------------------------------------------------------------------------