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 | |
parent | a8e72a5659769e3f1295d6d35092e8be579db7bb (diff) | |
download | gsoc2013-epiphany-50f45436240456c848921e426411070e04ccbd39.tar gsoc2013-epiphany-50f45436240456c848921e426411070e04ccbd39.tar.gz gsoc2013-epiphany-50f45436240456c848921e426411070e04ccbd39.tar.bz2 gsoc2013-epiphany-50f45436240456c848921e426411070e04ccbd39.tar.lz gsoc2013-epiphany-50f45436240456c848921e426411070e04ccbd39.tar.xz gsoc2013-epiphany-50f45436240456c848921e426411070e04ccbd39.tar.zst gsoc2013-epiphany-50f45436240456c848921e426411070e04ccbd39.zip |
*** empty log message ***
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.in | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 7107e68ec..a45100d61 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -SUBDIRS = lib embed src data po help +SUBDIRS = lib embed src data po help doc distcleancheck_listfiles = find . -type f -print | grep -v 'omf\.out' 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 |