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
Container registry
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dóra Kocsis
dynare
Commits
39287211
Commit
39287211
authored
Nov 15, 2010
by
Stéphane Adjemian (Charybdis)
Browse files
Options
Downloads
Plain Diff
Merge remote branch 'origin/master'
parents
5c709e47
02cc9cbd
No related branches found
No related tags found
No related merge requests found
Changes
3
Show 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/internals/Makefile.am
+8
-0
8 additions, 0 deletions
doc/internals/Makefile.am
with
22 additions
and
0 deletions
.gitignore
+
2
−
0
View file @
39287211
...
@@ -65,6 +65,8 @@ ylwrap
...
@@ -65,6 +65,8 @@ ylwrap
!/doc/parallel/RWMH_quest1_*.pdf
!/doc/parallel/RWMH_quest1_*.pdf
!/doc/parallel/waitbars*.pdf
!/doc/parallel/waitbars*.pdf
doc/m2html
doc/m2html
doc/internals/*.html
doc/internals/ltxpng
mex/build/matlab/run_m2html.m
mex/build/matlab/run_m2html.m
# Preprocessor
# Preprocessor
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
12
−
0
View file @
39287211
...
@@ -204,6 +204,11 @@ if test "x$enable_octave" = "xyes"; then
...
@@ -204,6 +204,11 @@ if test "x$enable_octave" = "xyes"; then
fi
fi
AM_CONDITIONAL([ENABLE_OCTAVE], [test "x$enable_octave" = "xyes"])
AM_CONDITIONAL([ENABLE_OCTAVE], [test "x$enable_octave" = "xyes"])
# Enable exporting of Org files
# The clean way would be to test for Emacs, Org-mode, latex, dvipng...
AC_ARG_ENABLE([org-export], AS_HELP_STRING([--enable-org-export], [enable exporting of Org files (requires Emacs, org-mode and other external programs)]))
AM_CONDITIONAL([ENABLE_ORG_EXPORT], [test "x$enable_org_export" != "x"])
# Construct final output message
# Construct final output message
BUILD_PREPROCESSOR="yes"
BUILD_PREPROCESSOR="yes"
...
@@ -260,6 +265,12 @@ else
...
@@ -260,6 +265,12 @@ else
BUILD_DYNARE_PREPROC_DOC="no (missing doxygen)"
BUILD_DYNARE_PREPROC_DOC="no (missing doxygen)"
fi
fi
if test "x$enable_org_export" != "x"; then
BUILD_DYNARE_INTERNAL_DOC="yes"
else
BUILD_DYNARE_INTERNAL_DOC="no (Org export not enabled)"
fi
if test "x$OCTAVE" != "x"; then
if test "x$OCTAVE" != "x"; then
TESTSUITE_OCTAVE="yes"
TESTSUITE_OCTAVE="yes"
else
else
...
@@ -290,6 +301,7 @@ PDF documentation (with "make pdf"):
...
@@ -290,6 +301,7 @@ PDF documentation (with "make pdf"):
HTML documentation (with "make html"):
HTML documentation (with "make html"):
Dynare reference manual: $BUILD_DYNARE_HTML_MANUAL
Dynare reference manual: $BUILD_DYNARE_HTML_MANUAL
Dynare preprocessor developer doc: $BUILD_DYNARE_PREPROC_DOC
Dynare preprocessor developer doc: $BUILD_DYNARE_PREPROC_DOC
Dynare internal doc: $BUILD_DYNARE_INTERNAL_DOC
Testsuites (run with "make check"):
Testsuites (run with "make check"):
Dynare for Octave: $TESTSUITE_OCTAVE
Dynare for Octave: $TESTSUITE_OCTAVE
...
...
This diff is collapsed.
Click to expand it.
doc/internals/Makefile.am
+
8
−
0
View file @
39287211
EXTRA_DIST
=
dynare-internals.org
EXTRA_DIST
=
dynare-internals.org
if
ENABLE_ORG_EXPORT
html-local
:
emacs
--batch
--visit
=
dynare-internals.org
--funcall
org-export-as-html-batch
endif
clean-local
:
rm
-rf
*
.html ltxpng
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