Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
Core Modules
dune-istl
Commits
30387e31
Commit
30387e31
authored
19 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
adjust Doxyfile depending on the state of the WML conditional
CLOSE bug #57 [[Imported from SVN: r478]]
parent
8d308eee
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/doxygen/Makefile.am
+21
-4
21 additions, 4 deletions
doc/doxygen/Makefile.am
with
21 additions
and
4 deletions
doc/doxygen/Makefile.am
+
21
−
4
View file @
30387e31
...
...
@@ -5,7 +5,7 @@ EXTRA_DIST = Doxyfile Doxydep \
doxy-footer.html doxy-header.html dune-doxy.css mainpage
if
BUILD_DOCS
WHAT
=
bestpractice.html
doxy-header.html
doxygen-tag
WHAT
=
bestpractice.html doxygen-tag
endif
all
:
$(WHAT)
...
...
@@ -14,18 +14,35 @@ all: $(WHAT)
BASEDIR
=
../..
CURDIR
=
doc/doxygen
EXTRAINSTALL
=
doxygen.log
# EXTRAINSTALL in the html subdirectory
DOXYGENINSTALL
=
*
.html
*
.css
*
.png
*
.gif
if
WML
# themeing doxygen
DOXYGENHEADER
=
doxy-header.html
DOXYGENFOOTER
=
doxy-footer.html
DOXYGENSTYLESHEET
=
dune-doxy.css
DOYXFILE_OVERWRITE
=
echo
"HTML_HEADER =
$(
DOXYGENHEADER
)
"
;
\
echo
"HTML_FOOTER =
$(
DOXYGENFOOTER
)
"
;
\
echo
"HTML_STYLESHEET =
$(
DOXYGENSTYLESHEET
)
"
;
endif
# what files does the doxygen-generated stuff depend on (find-syntax)
DEPENDON
=
-name
\*
.cc
-o
-name
\*
.hh
-o
-name
\*
.png
# as all doxygen files fill be installed in the html subdirectory
# the BASEDIR has to be adjusted
doxy-header.html
:
BASEDIR=../../..
# check dependency ourself to be robust
doxygen-tag
:
FORCE
doxygen-tag
:
FORCE
$(DOXYGENHEADER)
set
-e
;
\
if
test
!
-e
doxygen-tag
||
test
x
"
`
find
$(
top_srcdir
)
\(
$(
DEPENDON
)
\)
-a
-cnewer
doxygen-tag
-print
`
"
!=
x
;
then
\
echo
Running doxygen. This may take a
while
...
;
\
$(
DOXYGEN
)
>
doxygen.log 2>&1 <&-
;
\
(
cat
Doxyfile
;
$(
DOYXFILE_OVERWRITE
)
)
>
Doxyfile.tmp
;
\
$(
DOXYGEN
)
Doxyfile.tmp
>
doxygen.log 2>&1 <&-
;
\
rm
-f
Doxyfile.tmp
;
\
touch
doxygen-tag
;
\
fi
...
...
@@ -48,6 +65,6 @@ include $(top_srcdir)/am/webstuff
clean-local
:
rm
-rf
html latex
*
~
CLEANFILES
=
$(
WHAT
)
CLEANFILES
=
$(
WHAT
)
$(
DOXYGENHEADER
)
include
$(top_srcdir)/am/global-rules
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