ethercat/documentation/graphs/Makefile

18 lines
343 B
Makefile

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