documentation/graphs/Makefile
branchstable-1.3
changeset 1744 7bc131b92039
child 1745 07fd94c5119d
equal deleted inserted replaced
1743:1a7067207637 1744:7bc131b92039
       
     1 #-----------------------------------------------------------------------------
       
     2 #
       
     3 # $Id$
       
     4 #
       
     5 #-----------------------------------------------------------------------------
       
     6 
       
     7 GRAPHS := fsm_slave_conf.ps fsm_pdo_mapping.ps
       
     8 
       
     9 all: $(GRAPHS)
       
    10 
       
    11 %.ps: %.dot
       
    12 	dot -Tps -o $@ $<
       
    13 
       
    14 clean:
       
    15 	@rm -f *.ps
       
    16 
       
    17 #-----------------------------------------------------------------------------