Makefile : fix cleaning rules
[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 # For the callgraph, you need Graphviz, ruby and exuberant ctags.
20 # The manual requires latex including additional packages (acronym, graphicx, fancyvrb, ...).
21 # This is not generated in the normal code build
22
23 .PHONY: manual
24
25 all:    simavr_callgraph.pdf manual
26
27 simavr_callgraph.pdf:
28         ctags -f .tags ../simavr/sim/sim_*.[ch] ../simavr/sim/run_*.[ch] 2>/dev/null && \
29                 ruby ./tags_to_dot.rb .tags \
30                         ../simavr/sim/sim_*.c ../simavr/sim/run_*.c >.tags.dot && \
31                                 dot -Tpdf .tags.dot -o $@
32
33 manual:
34         $(MAKE) -C manual
35
36 clean:
37         rm -f .tags*
38         $(MAKE) -C manual clean