aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rwxr-xr-xconfigure10
2 files changed, 15 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0c2ab09..ff60329 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,11 @@ TOOLS=qemu-img$(EXESUF)
ifdef CONFIG_STATIC
LDFLAGS+=-static
endif
+ifdef BUILD_DOCS
DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1
+else
+DOCS=
+endif
all: dyngen$(EXESUF) $(TOOLS) $(DOCS)
for d in $(TARGET_DIRS); do \
@@ -34,7 +38,7 @@ clean:
done
distclean: clean
- rm -f config-host.mak config-host.h
+ rm -f config-host.mak config-host.h $(DOCS)
for d in $(TARGET_DIRS); do \
rm -rf $$d || exit 1 ; \
done
diff --git a/configure b/configure
index 3564617..120e03d 100755
--- a/configure
+++ b/configure
@@ -94,6 +94,7 @@ check_gfx="yes"
check_gcc="yes"
softmmu="yes"
user="no"
+build_docs="no"
# OS specific
targetos=`uname -s`
@@ -427,6 +428,11 @@ fi # sdl compile test
fi # cross compilation
fi # -z $sdl
+# Check if tools are available to build documentation.
+if [ ! -z `which texi2html` ] && [ ! -z `which pod2man` ]; then
+ build_docs="yes"
+fi
+
if test "$mingw32" = "yes" ; then
if test -z "$prefix" ; then
prefix="/c/Program Files/Qemu"
@@ -489,6 +495,7 @@ else
fi
echo "FMOD support $fmod $fmod_support"
echo "kqemu support $kqemu"
+echo "Documentation $build_docs"
if test $sdl_too_old = "yes"; then
echo "-> Your SDL version is too old - please upgrade to have SDL support"
@@ -632,6 +639,9 @@ if [ "$source_path_used" = "yes" ]; then
echo "VPATH=$source_path" >> $config_mak
fi
echo "TARGET_DIRS=$target_list" >> $config_mak
+if [ "$build_docs" = "yes" ] ; then
+ echo "BUILD_DOCS=yes" >> $config_mak
+fi
# XXX: suppress that
if [ "$bsd" = "yes" ] ; then