Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
72bc12e1
Commit
72bc12e1
authored
9 years ago
by
Oleg Hahm
Browse files
Options
Downloads
Patches
Plain Diff
doxygen: add make targets to build man and latex
HTML will be build per default.
parent
1bfe6356
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+7
-1
7 additions, 1 deletion
Makefile
doc/doxygen/Makefile
+9
-1
9 additions, 1 deletion
doc/doxygen/Makefile
doc/doxygen/riot.doxyfile
+1
-1
1 addition, 1 deletion
doc/doxygen/riot.doxyfile
with
17 additions
and
3 deletions
Makefile
+
7
−
1
View file @
72bc12e1
.all
:
.PHONY
:
all doc docclean welcome
.PHONY
:
all doc
doc-man doc-latex
docclean welcome
all
:
welcome
@
echo
""
...
...
@@ -9,6 +9,12 @@ all: welcome
doc
:
"
$(
MAKE
)
"
-BC
doc/doxygen
doc-man
:
"
$(
MAKE
)
"
-BC
doc/doxygen man
doc-latex
:
"
$(
MAKE
)
"
-BC
doc/doxygen latex
docclean
:
"
$(
MAKE
)
"
-BC
doc/doxygen clean
...
...
This diff is collapsed.
Click to expand it.
doc/doxygen/Makefile
+
9
−
1
View file @
72bc12e1
...
...
@@ -4,7 +4,15 @@ doc: html
# by marking html as phony we force make to re-run Doxygen even if the directory exists.
.PHONY
:
html
html
:
doxygen riot.doxyfile
(
cat
riot.doxyfile
;
echo
"GENERATE_HTML = yes"
)
| doxygen -
.PHONY
:
man
man
:
(
cat
riot.doxyfile
;
echo
"GENERATE_MAN = yes"
)
| doxygen -
.PHONY
:
latex
:
(
cat
riot.doxyfile
;
echo
"GENERATE_LATEX= yes"
)
| doxygen -
clean
:
-
@rm
-rf
latex man html doxygen_objdb_
*
.tmp
This diff is collapsed.
Click to expand it.
doc/doxygen/riot.doxyfile
+
1
−
1
View file @
72bc12e1
...
...
@@ -1039,7 +1039,7 @@ IGNORE_PREFIX =
# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output
# The default value is: YES.
GENERATE_HTML =
YES
GENERATE_HTML =
NO
# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment