File tree 3 files changed +17
-3
lines changed
3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1
1
.all :
2
2
3
- .PHONY : all doc docclean welcome
3
+ .PHONY : all doc doc-man doc-latex docclean welcome
4
4
5
5
all : welcome
6
6
@echo " "
@@ -9,6 +9,12 @@ all: welcome
9
9
doc :
10
10
" $( MAKE) " -BC doc/doxygen
11
11
12
+ doc-man :
13
+ " $( MAKE) " -BC doc/doxygen man
14
+
15
+ doc-latex :
16
+ " $( MAKE) " -BC doc/doxygen latex
17
+
12
18
docclean :
13
19
" $( MAKE) " -BC doc/doxygen clean
14
20
Original file line number Diff line number Diff line change @@ -4,7 +4,15 @@ doc: html
4
4
# by marking html as phony we force make to re-run Doxygen even if the directory exists.
5
5
.PHONY : html
6
6
html :
7
- doxygen riot.doxyfile
7
+ ( cat riot.doxyfile ; echo " GENERATE_HTML = yes" ) | doxygen -
8
+
9
+ .PHONY : man
10
+ man :
11
+ ( cat riot.doxyfile ; echo " GENERATE_MAN = yes" ) | doxygen -
12
+
13
+ .PHONY :
14
+ latex :
15
+ ( cat riot.doxyfile ; echo " GENERATE_LATEX= yes" ) | doxygen -
8
16
9
17
clean :
10
18
-@rm -rf latex man html doxygen_objdb_* .tmp
Original file line number Diff line number Diff line change @@ -1039,7 +1039,7 @@ IGNORE_PREFIX =
1039
1039
# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output
1040
1040
# The default value is: YES.
1041
1041
1042
- GENERATE_HTML = YES
1042
+ GENERATE_HTML = NO
1043
1043
1044
1044
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
1045
1045
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
You can’t perform that action at this time.
0 commit comments