Skip to content
Snippets Groups Projects
Commit 4b9cf91e authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Improved devel doxyfile

parent 54481bd8
No related branches found
No related tags found
No related merge requests found
...@@ -4,5 +4,4 @@ ...@@ -4,5 +4,4 @@
/automatic /automatic
/*PP.txt /*PP.txt
/links-to-user-manual.txt /links-to-user-manual.txt
/Doxyfile
...@@ -738,7 +738,6 @@ INPUT = ./Intro.txt \ ...@@ -738,7 +738,6 @@ INPUT = ./Intro.txt \
./plmdIntro.txt \ ./plmdIntro.txt \
./usingDoxygen.txt \ ./usingDoxygen.txt \
./parsing.txt \ ./parsing.txt \
@SRCDIR@ \
./links-to-user-manual.txt \ ./links-to-user-manual.txt \
./AddingAColvar.txt \ ./AddingAColvar.txt \
./AddingAFunction.txt \ ./AddingAFunction.txt \
...@@ -911,13 +910,13 @@ STRIP_CODE_COMMENTS = NO ...@@ -911,13 +910,13 @@ STRIP_CODE_COMMENTS = NO
# function all documented functions referencing it will be listed. # function all documented functions referencing it will be listed.
# The default value is: NO. # The default value is: NO.
REFERENCED_BY_RELATION = @MAYBE@ REFERENCED_BY_RELATION = NO
# If the REFERENCES_RELATION tag is set to YES then for each documented function # If the REFERENCES_RELATION tag is set to YES then for each documented function
# all documented entities called/used by that function will be listed. # all documented entities called/used by that function will be listed.
# The default value is: NO. # The default value is: NO.
REFERENCES_RELATION = @MAYBE@ REFERENCES_RELATION = NO
# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
# to YES, then the hyperlinks from functions in REFERENCES_RELATION and # to YES, then the hyperlinks from functions in REFERENCES_RELATION and
......
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
all: all:
./extract ./extract
doxygen ./go-doxygen
cp Octocat.png html/ cp Octocat.png html/
clean: clean:
rm -fr automatic html latex *~ links-to-user-manual.txt Doxyfile rm -fr automatic html latex *~ links-to-user-manual.txt
#!/bin/bash #!/bin/bash
sed s:@SRCDIR@:"$(echo ../src/*/ ../src/*/*/)": Doxyfile.in|
sed s:@MAYBE@:NO: > Doxyfile
cat ../src/*/*cpp | cat ../src/*/*cpp |
awk ' awk '
/PLUMED_REGISTER_ACTION/{print} /PLUMED_REGISTER_ACTION/{print}
......
#! /bin/bash
{
cat Doxyfile
echo "PROJECT_NUMBER = \"$(plumed info --version)\""
echo "INPUT+=" ../src/*/ ../src/*/*/
echo "REFERENCES_RELATION=NO"
echo "REFERENCED_BY_RELATION=NO"
} | doxygen -
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment