Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nomad
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
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
ms-public
nomad
Commits
7e83ca7a
Commit
7e83ca7a
authored
11 years ago
by
Miroslav Shaltev
Browse files
Options
Downloads
Patches
Plain Diff
add doxygen support
parent
4f3a80ae
No related branches found
No related tags found
No related merge requests found
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile.am
+4
-2
4 additions, 2 deletions
Makefile.am
configure.ac
+19
-1
19 additions, 1 deletion
configure.ac
docs/Doxyfile.in
+2303
-0
2303 additions, 0 deletions
docs/Doxyfile.in
docs/Makefile.am
+30
-0
30 additions, 0 deletions
docs/Makefile.am
with
2356 additions
and
3 deletions
Makefile.am
+
4
−
2
View file @
7e83ca7a
ACLOCAL_AMFLAGS
=
-I
m4
ACLOCAL_AMFLAGS
=
-I
m4
SUBDIRS
=
src
SUBDIRS
=
\
EXTRA_DIST
=
autogen.sh
src
\
\ No newline at end of file
docs
EXTRA_DIST
=
autogen.sh docs/html
\ No newline at end of file
This diff is collapsed.
Click to expand it.
configure.ac
+
19
−
1
View file @
7e83ca7a
...
@@ -12,6 +12,7 @@ AC_PROG_RANLIB
...
@@ -12,6 +12,7 @@ AC_PROG_RANLIB
AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
AM_INIT_AUTOMAKE
AM_INIT_AUTOMAKE
AC_CHECK_LIB([m], [sin])
AC_CHECK_LIB([m], [sin])
...
@@ -21,6 +22,23 @@ AC_CHECK_HEADERS([limits.h stdlib.h unistd.h])
...
@@ -21,6 +22,23 @@ AC_CHECK_HEADERS([limits.h stdlib.h unistd.h])
AC_FUNC_ERROR_AT_LINE
AC_FUNC_ERROR_AT_LINE
AC_CHECK_FUNCS([floor pow sqrt])
AC_CHECK_FUNCS([floor pow sqrt])
AC_CHECK_PROGS([DOXYGEN],[doxygen])
if test "x$DOXYGEN" = "xtrue"; then
AC_MSG_WARN([Doxygen not found - continuing without Doxygen support])
fi
AC_CHECK_PROGS([DOT],[dot])
if test "x$DOT" = "xtrue"; then
AC_MSG_WARN([dot not found - install graphviz for more fancier documentation])
fi
AM_CONDITIONAL([HAVE_DOXYGEN],[test -n "$DOXYGEN"])
AM_COND_IF([HAVE_DOXYGEN], [AC_CONFIG_FILES([docs/Doxyfile])])
NOMAD_ENABLE_MPI
NOMAD_ENABLE_MPI
MPI_ENABLE_VAL="`eval test x$mpi = xtrue && echo "ENABLED"||echo "DISABLED"`"
MPI_ENABLE_VAL="`eval test x$mpi = xtrue && echo "ENABLED"||echo "DISABLED"`"
AM_CONDITIONAL([MPI_ENABLED],[test "$MPI_ENABLE_VAL" = "ENABLED"])
AM_CONDITIONAL([MPI_ENABLED],[test "$MPI_ENABLE_VAL" = "ENABLED"])
...
@@ -34,5 +52,5 @@ fi
...
@@ -34,5 +52,5 @@ fi
NOMAD_ENABLE_MODULE([MPI],[mpi])
NOMAD_ENABLE_MODULE([MPI],[mpi])
AC_PROG_CPP
AC_PROG_CPP
AC_CONFIG_FILES([Makefile src/Makefile nomad.pc nomadmpi.pc])
AC_CONFIG_FILES([Makefile src/Makefile
docs/Makefile
nomad.pc nomadmpi.pc])
AC_OUTPUT
AC_OUTPUT
This diff is collapsed.
Click to expand it.
docs/Doxyfile.in
0 → 100644
+
2303
−
0
View file @
7e83ca7a
This diff is collapsed.
Click to expand it.
docs/Makefile.am
0 → 100644
+
30
−
0
View file @
7e83ca7a
if
HAVE_DOXYGEN
directory
=
$(
top_srcdir
)
/docs
$(directory)/html
:
doxyfile.stamp
doxyfile.stamp
:
$(
DOXYGEN
)
Doxyfile
echo
Timestamp
>
doxyfile.stamp
CLEANFILES
=
doxyfile.stamp
docsdir
=
$(
datadir
)
/docs/@PACKAGE@/html
docs_DATA
=
$(
directory
)
/html/
*
.html
\
$(
directory
)
/html/
*
.png
\
$(
directory
)
/html/
*
.css
\
$(
directory
)
/html/
*
.jpg
\
$(
directory
)
/html/
*
.m
*
\
$(
directory
)
/html/
*
.js
sdocsdir
=
$(
datadir
)
/docs/@PACKAGE@/html/search
sdocs_DATA
=
$(
directory
)
/html/search/
*
.html
\
$(
directory
)
/html/search/
*
.png
\
$(
directory
)
/html/search/
*
.css
\
$(
directory
)
/html/search/
*
.js
all-local
:
doxyfile.stamp
clean-local
:
rm
-rf
$(
top_srcdir
)
/docs/html
endif
\ No newline at end of file
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