Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Lyndon Brown
VLC
Commits
119a49ff
Commit
119a49ff
authored
16 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
Add make doc and fix Doxygen from top_builddir
parent
ebd80034
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile.am
+4
-1
4 additions, 1 deletion
Makefile.am
doc/.gitignore
+1
-0
1 addition, 0 deletions
doc/.gitignore
doc/Doxyfile.in
+8
-8
8 additions, 8 deletions
doc/Doxyfile.in
doc/Makefile.am
+9
-2
9 additions, 2 deletions
doc/Makefile.am
with
22 additions
and
11 deletions
Makefile.am
+
4
−
1
View file @
119a49ff
...
...
@@ -316,7 +316,10 @@ libvlc:
core
:
cd
src
&&
$(
MAKE
)
$(
AM_MAKEFLAGS
)
vlc
$(
EXEEXT
)
.PHONY
:
libvlc core
doc
:
cd
doc
&&
$(
MAKE
)
$(
AM_MAKEFLAGS
)
doc
.PHONY
:
libvlc core doc
#To get some nice output
nice
:
...
...
This diff is collapsed.
Click to expand it.
doc/.gitignore
+
1
−
0
View file @
119a49ff
ChangeLog-*
vlc.tags
Doxyfile
doxygen
This diff is collapsed.
Click to expand it.
doc/Doxyfile
→
doc/Doxyfile
.in
+
8
−
8
View file @
119a49ff
...
...
@@ -23,7 +23,7 @@ PROJECT_NAME = VLC
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER =
PROJECT_NUMBER =
@VERSION@
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
...
...
@@ -450,9 +450,9 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT =
..
/src \
..
/include \
..
/modules
INPUT =
@top_srcdir@
/src \
@top_srcdir@
/include \
@top_srcdir@
/modules
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
...
...
@@ -473,7 +473,7 @@ RECURSIVE = YES
# excluded from the INPUT source files. This way you can easily exclude a
# subdirectory from a directory tree whose root is specified with the INPUT tag.
EXCLUDE =
..
/src/extras
EXCLUDE =
@top_srcdir@
/src/extras
# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
# directories that are symbolic links (a Unix filesystem feature) are excluded
...
...
@@ -521,7 +521,7 @@ IMAGE_PATH =
# to standard output. If FILTER_PATTERNS is specified, this tag will be
# ignored.
INPUT_FILTER = "
..
/toolbox --add-include"
INPUT_FILTER = "
@top_srcdir@
/toolbox --add-include"
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
# basis. Doxygen will compare the file name with each pattern and apply the
...
...
@@ -971,8 +971,8 @@ SEARCH_INCLUDES = YES
# contain include files that are not input files but should be processed by
# the preprocessor.
INCLUDE_PATH =
..
/include \
..
/include/vlc
INCLUDE_PATH =
@top_srcdir@
/include \
@top_srcdir@
/include/vlc
# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
# patterns (like *.h and *.hpp) to filter out the header-files in the
...
...
This diff is collapsed.
Click to expand it.
doc/Makefile.am
+
9
−
2
View file @
119a49ff
...
...
@@ -32,6 +32,7 @@ EXTRA_DIST = \
intf-vcd.txt
\
release-howto.txt
\
arm-crosscompile-howto.sgml
\
Doxyfile.in
\
Configure.help
\
lirc/example.lircrc
\
skins/skins-howto.txt
\
...
...
@@ -47,7 +48,13 @@ EXTRA_DIST = \
demo.sh
\
$(
NULL
)
DISTCLEANFILES
=
$(
CHANGELOGS
)
DISTCLEANFILES
=
$(
CHANGELOGS
)
Doxyfile
Doxyfile
:
Doxyfile.in $(top_builddir)/config.status
cd
$(
top_builddir
)
&&
$(
SHELL
)
./config.status
--file
=
$(
subdir
)
/
$@
doc
:
Doxyfile
doxygen
$(CHANGELOGS)
:
Makefile.am
if
test
-d
"
$(
top_srcdir
)
/.git"
;
then
\
...
...
@@ -59,7 +66,7 @@ $(CHANGELOGS): Makefile.am
fi
# This one needs to be rebuilt all the time :)
.PHONY
:
ChangeLog-2008 changelogs
.PHONY
:
ChangeLog-2008 changelogs
doc
changelogs
:
$(CHANGELOGS)
...
...
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