docs: Fix recursion into doc/ directory

We should always recurse into the doc/ directory; whether we should then
recurse into reference/, cookbook/ and manual/ is a matter of specific
configure-time flags.
This commit is contained in:
Emmanuele Bassi 2009-11-30 21:51:46 +00:00
parent 5e1ccaeb60
commit 52db14b78d
2 changed files with 6 additions and 6 deletions

View File

@ -2,11 +2,7 @@ include $(top_srcdir)/build/autotools/Makefile.am.silent
NULL =
SUBDIRS = build clutter tests po
if BUILD_GTK_DOC
SUBDIRS += doc
endif
SUBDIRS = doc build clutter tests po
DIST_SUBDIRS = build clutter tests doc po

View File

@ -1,4 +1,8 @@
SUBDIRS = reference
SUBDIRS =
if BUILD_GTK_DOC
SUBDIRS += reference
endif
if ENABLE_DOCS
SUBDIRS += common cookbook manual