ethercat/documentation/graphs/Makefile

18 lines
380 B
Makefile

#-----------------------------------------------------------------------------
#
# $Id$
#
#-----------------------------------------------------------------------------
GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps fsm_master.ps
all: $(GRAPHS)
%.ps: %.dot
dot -Tps -o $@ $<
clean:
@rm -f *.ps
#-----------------------------------------------------------------------------