diff options
author | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-11-19 01:25:52 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-11-19 01:25:52 +0800 |
commit | 50f45436240456c848921e426411070e04ccbd39 (patch) | |
tree | 858139e6ab75f37dfb59ec574ad70274b1ac7241 /configure.in | |
parent | a8e72a5659769e3f1295d6d35092e8be579db7bb (diff) | |
download | gsoc2013-epiphany-50f45436240456c848921e426411070e04ccbd39.tar.gz gsoc2013-epiphany-50f45436240456c848921e426411070e04ccbd39.tar.zst gsoc2013-epiphany-50f45436240456c848921e426411070e04ccbd39.zip |
*** empty log message ***
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/configure.in b/configure.in index a6465d922..5ad1b4737 100644 --- a/configure.in +++ b/configure.in @@ -220,6 +220,19 @@ AM_GLIB_GNU_GETTEXT dnl uninstalled share dir to search data AC_DEFINE_UNQUOTED(SHARE_UNINSTALLED_DIR,"`pwd`/data",[path to source data dir]) +dnl Docs +AC_ARG_WITH(html-dir, [ --with-html-dir=PATH path to installed docs ]) + +if test "x$with_html_dir" = "x" ; then + HTML_DIR='${datadir}/gtk-doc/html' +else + HTML_DIR=$with_html_dir +fi + +AC_SUBST(HTML_DIR) + +GTK_DOC_CHECK([1.0]) + AC_OUTPUT([ Makefile data/Makefile @@ -227,6 +240,8 @@ data/epiphany-1.0.pc data/glade/Makefile data/art/Makefile data/ui/Makefile +doc/Makefile +doc/reference/Makefile lib/Makefile lib/egg/Makefile lib/widgets/Makefile |