Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dynare
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
Selma Malmberg
dynare
Commits
bf85deaa
Commit
bf85deaa
authored
14 years ago
by
Sébastien Villemot
Browse files
Options
Downloads
Patches
Plain Diff
Build system: add rules for creating info file
(cherry picked from commit
967f2f10
)
parent
2b9c7192
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
configure.ac
+12
-0
12 additions, 0 deletions
configure.ac
doc/Makefile.am
+17
-1
17 additions, 1 deletion
doc/Makefile.am
with
31 additions
and
1 deletion
.gitignore
+
2
−
0
View file @
bf85deaa
...
...
@@ -42,6 +42,8 @@ ylwrap
*.blg
*.lof
/doc/manual-html/
/doc/manual.texi
/doc/manual.info
!/doc/guide.bbl
!/doc/macroprocessor/new-design.pdf
!/doc/macroprocessor/old-design.pdf
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
12
−
0
View file @
bf85deaa
...
...
@@ -135,6 +135,10 @@ AX_PROG_XSLTPROC
AX_CHECK_DOCBOOK_XSLT_MIN(1.69.0)
AM_CONDITIONAL([HAVE_XSLT], [test "x$XSLTPROC" != "x" -a "x$DOCBOOK_XSLT_CURRENT_VERSION" != "xno"])
AC_CHECK_PROG([DOCBOOK2XTEXI], [docbook2x-texi], [docbook2x-texi])
AC_CHECK_PROG([MAKEINFO], [makeinfo], [makeinfo])
AM_CONDITIONAL([HAVE_DOCBOOK2XTEXI_MAKEINFO], [test "x$DOCBOOK2XTEXI" != "x" -a "x$MAKEINFO" != "x"])
AC_CHECK_PROG([DOXYGEN], [doxygen], [doxygen])
AM_CONDITIONAL([HAVE_DOXYGEN], [test "x$DOXYGEN" != "x"])
...
...
@@ -271,6 +275,12 @@ else
BUILD_DYNARE_INTERNAL_DOC="no (Org export not enabled)"
fi
if test "x$DOCBOOK2XTEXI" != "x" -a "x$MAKEINFO" != "x"; then
BUILD_DYNARE_INFO="yes"
else
BUILD_DYNARE_INFO="no (missing docbook2x-texi and/or makeinfo)"
fi
if test "x$OCTAVE" != "x"; then
TESTSUITE_OCTAVE="yes"
else
...
...
@@ -303,6 +313,8 @@ HTML documentation (with "make html"):
Dynare preprocessor developer doc: $BUILD_DYNARE_PREPROC_DOC
Dynare internal doc: $BUILD_DYNARE_INTERNAL_DOC
Info documentation (with "make info"): $BUILD_DYNARE_INFO
Testsuites (run with "make check"):
Dynare for Octave: $TESTSUITE_OCTAVE
Dynare++: $TESTSUITE_DYNAREPLUSPLUS
...
...
This diff is collapsed.
Click to expand it.
doc/Makefile.am
+
17
−
1
View file @
bf85deaa
...
...
@@ -12,6 +12,16 @@ endif
pdf-local
:
$(PDF_TARGETS)
# We don't use info_TEXINFOS because otherwise it generates a manual.pdf rule
# which conflict with ours. Hence we have to manually specify building rules.
INFO_TARGETS
=
if
HAVE_DOCBOOK2XTEXI_MAKEINFO
INFO_TARGETS
+=
manual.info
endif
info-local
:
$(INFO_TARGETS)
if
HAVE_XSLT
html-local
:
manual-html/index.html
endif
...
...
@@ -36,6 +46,12 @@ manual-html/index.html: manual.xml dynare_html.xsl dynare.xsl
manual.pdf
:
manual.xml
$(
DBLATEX
)
manual.xml
manual.texi
:
manual.xml
$(
DOCBOOK2XTEXI
)
--encoding
=
utf-8//TRANSLIT
--string-param
output-file
=
manual
$<
manual.info
:
manual.texi
$(
MAKEINFO
)
$<
clean-local
:
rm
-f
*
~
*
.pdf
*
.log
*
.aux
*
.out
rm
-f
*
~
*
.pdf
*
.log
*
.aux
*
.out
manual.texi manual.info
rm
-rf
manual-html
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