mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-08-18 17:17:23 +08:00
22 lines
407 B
Makefile
22 lines
407 B
Makefile
#-----------------------------------------------------------------------------
|
|
#
|
|
# $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
|
|
|
|
#-----------------------------------------------------------------------------
|