misc: Move avr_mcu_section.h to sim/avr
[simavr] / doc / Makefile
1 #
2 #       Copyright 2008, 2009 Michel Pollet <buserror@gmail.com>
3 #
4 #       This file is part of simavr.
5 #
6 #       simavr is free software: you can redistribute it and/or modify
7 #       it under the terms of the GNU General Public License as published by
8 #       the Free Software Foundation, either version 3 of the License, or
9 #       (at your option) any later version.
10 #
11 #       simavr is distributed in the hope that it will be useful,
12 #       but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #       GNU General Public License for more details.
15 #
16 #       You should have received a copy of the GNU General Public License
17 #       along with simavr.  If not, see <http://www.gnu.org/licenses/>.
18
19 # you need Graphviz, ruby and exuberant ctags here. 
20 # this is not generated in the normal code build
21
22 all:    simavr_callgraph.pdf
23
24 simavr_callgraph.pdf:
25         ctags -f .tags ../simavr/sim/sim_*.[ch] ../simavr/sim/run_*.[ch] 2>/dev/null && \
26                 ruby ./tags_to_dot.rb .tags \
27                         ../simavr/sim/sim_*.c ../simavr/sim/run_*.c >.tags.dot && \
28                                 dot -Tpdf .tags.dot -o $@
29
30 clean:
31         rm -f .tags*