aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@src.gnome.org>2008-04-20 07:01:08 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2008-04-20 07:01:08 +0800
commit26b41e458c778f841fc9dd1a353bc9fe2761326c (patch)
treec72a5dffa9d847c885a3daa55d7f0b727cb2fe19
parent53aa1e8e60b7c9a48348caddccebefe81249d28f (diff)
downloadgsoc2013-empathy-26b41e458c778f841fc9dd1a353bc9fe2761326c.tar
gsoc2013-empathy-26b41e458c778f841fc9dd1a353bc9fe2761326c.tar.gz
gsoc2013-empathy-26b41e458c778f841fc9dd1a353bc9fe2761326c.tar.bz2
gsoc2013-empathy-26b41e458c778f841fc9dd1a353bc9fe2761326c.tar.lz
gsoc2013-empathy-26b41e458c778f841fc9dd1a353bc9fe2761326c.tar.xz
gsoc2013-empathy-26b41e458c778f841fc9dd1a353bc9fe2761326c.tar.zst
gsoc2013-empathy-26b41e458c778f841fc9dd1a353bc9fe2761326c.zip
Add build system for help manual
svn path=/trunk/; revision=997
-rw-r--r--.gitignore1
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac2
-rw-r--r--help/Makefile.am8
-rw-r--r--m4/.gitignore1
5 files changed, 13 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 00fa9827b..c30a47430 100644
--- a/.gitignore
+++ b/.gitignore
@@ -43,3 +43,4 @@ omf.make
compile
tags
TAGS
+gnome-doc-utils.make
diff --git a/Makefile.am b/Makefile.am
index 14aa451e5..6608bf10d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = tools extensions po data libempathy libempathy-gtk src docs
+SUBDIRS = tools extensions po data libempathy libempathy-gtk src docs help
if HAVE_MEGAPHONE
SUBDIRS += megaphone
diff --git a/configure.ac b/configure.ac
index ec78ded33..b769c0416 100644
--- a/configure.ac
+++ b/configure.ac
@@ -55,6 +55,7 @@ AM_PATH_GLIB_2_0
AC_PATH_XTRA
IT_PROG_INTLTOOL([0.35.0])
GTK_DOC_CHECK([1.3])
+GNOME_DOC_INIT
IDT_COMPILE_WARNINGS
AC_PATH_PROG(DBUS_BINDING_TOOL, dbus-binding-tool)
AC_PATH_PROG(GCONFTOOL, gconftool-2)
@@ -314,6 +315,7 @@ AC_OUTPUT([
docs/libempathy/version.xml
docs/libempathy-gtk/Makefile
docs/libempathy-gtk/version.xml
+ help/Makefile
python/Makefile
python/pyempathy/Makefile
python/pyempathygtk/Makefile
diff --git a/help/Makefile.am b/help/Makefile.am
new file mode 100644
index 000000000..b5cb8f403
--- /dev/null
+++ b/help/Makefile.am
@@ -0,0 +1,8 @@
+include $(top_srcdir)/gnome-doc-utils.make
+
+DOC_MODULE = empathy
+DOC_ENTITIES = legal.xml
+DOC_LINGUAS =
+DOC_FIGURES =
+
+dist-hook: doc-dist-hook
diff --git a/m4/.gitignore b/m4/.gitignore
index e429342b9..7f3cf1220 100644
--- a/m4/.gitignore
+++ b/m4/.gitignore
@@ -1,2 +1,3 @@
gtk-doc.m4
intltool.m4
+gnome-doc-utils.m4