|
1 |
|
2 all: class/html/index.html \ |
|
3 define/html/index.html \ |
|
4 enum/html/index.html \ |
|
5 file/html/index.html \ |
|
6 func/html/index.html \ |
|
7 page/html/index.html \ |
|
8 relates/html/index.html \ |
|
9 author/html/index.html \ |
|
10 par/html/index.html \ |
|
11 overload/html/index.html \ |
|
12 example/html/index.html \ |
|
13 include/html/index.html \ |
|
14 qtstyle/html/index.html \ |
|
15 jdstyle/html/index.html \ |
|
16 structcmd/html/index.html \ |
|
17 autolink/html/index.html \ |
|
18 restypedef/html/index.html \ |
|
19 afterdoc/html/index.html \ |
|
20 template/html/index.html \ |
|
21 tag/html/index.html \ |
|
22 group/html/index.html \ |
|
23 diagrams/html/index.html \ |
|
24 memgrp/html/index.html \ |
|
25 docstring/html/index.html \ |
|
26 pyexample/html/index.html \ |
|
27 mux/html/index.html \ |
|
28 manual/html/index.html |
|
29 |
|
30 clean: |
|
31 rm -rf class define enum file func page relates author \ |
|
32 par overload example include qtstyle jdstyle structcmd \ |
|
33 autolink tag restypedef afterdoc template tag group diagrams \ |
|
34 memgrp docstring pyexample mux manual |
|
35 |
|
36 class/html/index.html: class.h class.cfg |
|
37 $(DOXYGEN)/bin/doxygen class.cfg |
|
38 |
|
39 define/html/index.html: define.h define.cfg |
|
40 $(DOXYGEN)/bin/doxygen define.cfg |
|
41 |
|
42 enum/html/index.html: enum.h enum.cfg |
|
43 $(DOXYGEN)/bin/doxygen enum.cfg |
|
44 |
|
45 file/html/index.html: file.h file.cfg |
|
46 $(DOXYGEN)/bin/doxygen file.cfg |
|
47 |
|
48 func/html/index.html: func.h func.cfg |
|
49 $(DOXYGEN)/bin/doxygen func.cfg |
|
50 |
|
51 page/html/index.html: page.doc page.cfg |
|
52 $(DOXYGEN)/bin/doxygen page.cfg |
|
53 |
|
54 relates/html/index.html: relates.cpp relates.cfg |
|
55 $(DOXYGEN)/bin/doxygen relates.cfg |
|
56 |
|
57 author/html/index.html: author.cpp author.cfg |
|
58 $(DOXYGEN)/bin/doxygen author.cfg |
|
59 |
|
60 par/html/index.html: par.cpp par.cfg |
|
61 $(DOXYGEN)/bin/doxygen par.cfg |
|
62 |
|
63 overload/html/index.html: overload.cpp overload.cfg |
|
64 $(DOXYGEN)/bin/doxygen overload.cfg |
|
65 |
|
66 example/html/index.html: example.cpp example_test.cpp example.cfg |
|
67 $(DOXYGEN)/bin/doxygen example.cfg |
|
68 |
|
69 include/html/index.html: include.cpp example_test.cpp include.cfg |
|
70 $(DOXYGEN)/bin/doxygen include.cfg |
|
71 |
|
72 qtstyle/html/index.html: qtstyle.cpp qtstyle.cfg |
|
73 $(DOXYGEN)/bin/doxygen qtstyle.cfg |
|
74 |
|
75 jdstyle/html/index.html: jdstyle.cpp jdstyle.cfg |
|
76 $(DOXYGEN)/bin/doxygen jdstyle.cfg |
|
77 |
|
78 structcmd/html/index.html: structcmd.h structcmd.cfg |
|
79 $(DOXYGEN)/bin/doxygen structcmd.cfg |
|
80 |
|
81 autolink/html/index.html: autolink.cpp autolink.cfg |
|
82 $(DOXYGEN)/bin/doxygen autolink.cfg |
|
83 |
|
84 tag/html/index.html: tag.cpp tag.cfg example/html/index.html |
|
85 $(DOXYGEN)/bin/doxygen tag.cfg |
|
86 # sed -e "1,1s#perl#$(PERL)#g" tag/html/installdox >tag/html/installdox.perl |
|
87 # cd tag/html ; $(PERL) installdox.perl -lexample.tag@../../example/html |
|
88 |
|
89 restypedef/html/index.html: restypedef.cpp restypedef.cfg |
|
90 $(DOXYGEN)/bin/doxygen restypedef.cfg |
|
91 |
|
92 afterdoc/html/index.html: afterdoc.h afterdoc.cfg |
|
93 $(DOXYGEN)/bin/doxygen afterdoc.cfg |
|
94 |
|
95 template/html/index.html: templ.cpp templ.cfg |
|
96 $(DOXYGEN)/bin/doxygen templ.cfg |
|
97 |
|
98 group/html/index.html: group.cpp group.cfg |
|
99 $(DOXYGEN)/bin/doxygen group.cfg |
|
100 |
|
101 memgrp/html/index.html: memgrp.cpp memgrp.cfg |
|
102 $(DOXYGEN)/bin/doxygen memgrp.cfg |
|
103 |
|
104 pyexample/html/index.html: pyexample.py pyexample.cfg |
|
105 $(DOXYGEN)/bin/doxygen pyexample.cfg |
|
106 |
|
107 mux/html/index.html: mux.vhdl mux.cfg |
|
108 $(DOXYGEN)/bin/doxygen mux.cfg |
|
109 |
|
110 manual/html/index.html: manual.c manual.cfg |
|
111 $(DOXYGEN)/bin/doxygen manual.cfg |
|
112 |
|
113 docstring/html/index.html: docstring.py docstring.cfg |
|
114 $(DOXYGEN)/bin/doxygen docstring.cfg |
|
115 |
|
116 diagrams/html/index.html: diagrams_a.h diagrams_b.h diagrams_c.h diagrams_d.h diagrams_e.h diagrams.cfg |
|
117 ifneq ($(HAVE_DOT),) |
|
118 $(DOXYGEN)/bin/doxygen diagrams.cfg |
|
119 endif |
|
120 |