diff --git a/.gitignore b/.gitignore
index e478b4339..76a32df98 100644
--- a/.gitignore
+++ b/.gitignore
@@ -37,10 +37,6 @@ depcomp
/doc/cookbook/*.stamp
/doc/cookbook/clutter-cookbook.xml
/doc/cookbook/clutter-cookbook.html
-/doc/manual/*.pdf
-/doc/manual/html
-/doc/manual/*.stamp
-/doc/manual/clutter-manual.xml
doc/reference/clutter/clutter-*.txt
!/doc/reference/clutter/clutter-sections.txt
doc/reference/clutter/html
diff --git a/configure.ac b/configure.ac
index 1a06f9f07..3b0cff1f4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -980,8 +980,6 @@ AC_CONFIG_FILES([
doc/reference/cally/Makefile
doc/reference/cally/cally-docs.xml
doc/common/Makefile
- doc/manual/Makefile
- doc/manual/clutter-manual.xml
doc/cookbook/Makefile
doc/cookbook/clutter-cookbook.xml
doc/cookbook/examples/Makefile
diff --git a/doc/Makefile.am b/doc/Makefile.am
index ee0dbba78..879d3a57d 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -8,7 +8,7 @@ if ENABLE_DOCS
SUBDIRS += common cookbook
endif
-DIST_SUBDIRS = reference common cookbook manual
+DIST_SUBDIRS = reference common cookbook
EXTRA_DIST = \
CODING_STYLE \
diff --git a/doc/manual/Makefile.am b/doc/manual/Makefile.am
deleted file mode 100644
index 26f144438..000000000
--- a/doc/manual/Makefile.am
+++ /dev/null
@@ -1,76 +0,0 @@
-HTML_DIR = $(datadir)/gtk-doc/html
-TARGET_DIR = $(HTML_DIR)/clutter-manual
-
-HTML_FILES = $(srcdir)/html/*.html
-IMAGE_FILES = $(srcdir)/images/*.png
-
-EXTRA_DIST = $(IMAGE_FILES)
-
-CLEANFILES = \
- pdf-build.stamp \
- html-build.stamp
-
-pdf-build.stamp: clutter-manual.xml
- SP_ENCODING=XML SP_CHARSET_FIXED=YES \
- $(JW) -b pdf $(top_builddir)/doc/manual/clutter-manual.xml \
- && mv -f $(srcdir)/clutter-manual.pdf clutter-manual-@CLUTTER_API_VERSION@.pdf \
- && echo timestamp > $(@F)
-
-html-build.stamp: clutter-manual.xml
- $(mkinstalldirs) html \
- && $(XSLTPROC) --nonet --xinclude -o html/ \
- --path $(top_srcdir)/doc/common \
- --path . \
- --stringparam gtkdoc.bookname "clutter-manual" \
- --stringparam gtkdoc.version @CLUTTER_API_VERSION@ \
- $(srcdir)/ref-html-style.xsl \
- $(top_builddir)/doc/manual/clutter-manual.xml \
- && echo timestamp > $(@F)
-
-if ENABLE_PDFS
-pdf_target = pdf-build.stamp
-else
-pdf_target =
-endif
-
-if ENABLE_DOCS
-all-local: html-build.stamp $(pdf_target)
-else
-all-local:
-endif
-
-clean-local:
- @rm -rf html ; \
- rm -f *.pdf ; \
- rm -f *.stamp
-
-uninstall-local:
-
-install-data-local:
- installfiles=`echo $(srcdir)/html/*`; \
- if test "$$installfiles" = '$(srcdir)/html/*'; \
- then echo '-- Nothing to install' ; \
- else \
- $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR) ; \
- for file in `ls $(srcdir)/$(HTML_FILES)`; do \
- if [ -f $$file ]; then \
- basefile=`echo $$file | sed -e 's,^.*/,,'`; \
- $(INSTALL_DATA) $$file $(DESTDIR)$(TARGET_DIR)/$$basefile; \
- fi \
- done; \
- fi; \
- if [ -d $(srcdir)/images ]; \
- then \
- $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)/images ; \
- for file in `ls $(srcdir)/$(IMAGE_FILES)`; do \
- if [ -f $$file ]; \
- then \
- basefile=`echo $$file | sed -e 's,^.*/,,'`; \
- $(INSTALL_DATA) $$file $(DESTDIR)$(TARGET_DIR)/images/$$basefile; \
- fi \
- done; \
- fi; \
- $(INSTALL_DATA) $(top_srcdir)/doc/common/style.css $(DESTDIR)$(TARGET_DIR)/style.css; \
- $(INSTALL_DATA) $(srcdir)/html/clutter-manual.devhelp $(DESTDIR)$(TARGET_DIR)/clutter-manual.devhelp
-
-.PHONY : doc
diff --git a/doc/manual/clutter-manual.xml.in b/doc/manual/clutter-manual.xml.in
deleted file mode 100644
index 914f5de78..000000000
--- a/doc/manual/clutter-manual.xml.in
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-]>
-
-
-
-
- Matthew
- Allum
- &author_mail;
-
-
-
- 2007
-
-
-
- This document is distributed under the terms of
- the GNU General Public License as published by the Free
- Software Foundation; either version 2 of the License,
- or (at your option) any later version.
- A copy of this license can be found in the file COPYING included with the source code of this program.
-
-
- Clutter Application Developer Manual
- for Clutter &apiversion;
-
-
-
- Introduction
-
- About Clutter
- FIXME
-
-
- About this document
-
- This documentation is available in various formats like HTML, text and PDF. The latest version is
- always available at &appurl;.
-
-
-
- Where to get it
-
- You can obtain Clutter from &appurl;
- or perhaps from your distributor.
-
-
-
- License
-
- Clutter is distributed under the terms of the GNU Lesser General Public License as published
- by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
- A copy of this license can be found in the file COPYING included with the source code of this
- program.
-
-
-
-
-
- Installation
-
-
-
-
-
- Frequently Asked Questions
-
-
-
- Why do Clutter applications run really slowly on Intel cards even though direct rendering support is reported.
-
-
- There is a bug in some versions of the Intel drivers that causes the driver to 'stall' when attempting to sync to vblank (as Clutter does by default). The fix is to either upgrade your drivers or set 'CLUTTER_VBLANK=none' when running Clutter applications.
-
-
-
-
-
-
- Contributing to this document
- This document is written in Docbook XML. The source file for it is located in the subdirectory "doc/manual" of the source directory of Clutter.
-
-
diff --git a/doc/manual/images/clutter-header.png b/doc/manual/images/clutter-header.png
deleted file mode 100644
index 13d0cfc0e..000000000
Binary files a/doc/manual/images/clutter-header.png and /dev/null differ
diff --git a/doc/manual/manual.xsl b/doc/manual/manual.xsl
deleted file mode 100644
index ef53df6d1..000000000
--- a/doc/manual/manual.xsl
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/doc/manual/style.css b/doc/manual/style.css
deleted file mode 100644
index c299fdd81..000000000
--- a/doc/manual/style.css
+++ /dev/null
@@ -1,97 +0,0 @@
-body address
-{
- line-height: 1.3;
- margin: .6em 0;
-}
-
-body blockquote
-{
- margin-top: .75em;
- line-height: 1.5;
- margin-bottom: .75em;
-}
-
-html body
-{
- margin: 1em 2% 1em 2%;
- line-height: 1.2;
- background-color: #ffffff;
-}
-
-body pre
-{
- margin: .75em 0;
- line-height: 1.3;
- color: #4f3f3f;
- font-weight: bold;
-}
-
-body div
-{
- margin: 0;
-}
-
-dl
-{
- margin: .4em 0;
- line-height: 1.2;
-}
-
-.legalnotice
-{
- font-size: small;
-}
-
-h1,h2,h3,h4,h5,h6,
-div.example p b,
-.question,
-div.table p b,
-div.procedure p b
-{
- color: #990000;
-}
-
-.option
-{
- color: #0000ca;
- font-weight: bold;
-}
-
-.parameter
-{
- color: #007a00;
- font-weight: bold;
-}
-
-a
-{
- color: #000000;
-}
-
-a:hover
-{
- color: #3c3c3c;
- border-bottom: 1px solid #dc0000;
-}
-
-hr
-{
- background-color: #9c9c9c;
- border-style: none;
- height: 1px;
-}
-
-li
-{
- list-style-type: square;
-}
-
-.programlisting, .screen
-{
- background-color: #F8F9FD;
- border-color: #907777;
- border-width: 1px;
- border-style: solid;
- padding: 0.5em;
-}
-