From: Michael Renzmann <mrenzmann@otaku42.de>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH][RFC] Make documentation optional
Date: Fri, 10 Feb 2006 08:48:39 +0100 [thread overview]
Message-ID: <1139557720.5264.28.camel@gimli> (raw)
In-Reply-To: <1139557403.5264.25.camel@gimli>
[-- Attachment #1: Type: text/plain, Size: 215 bytes --]
Hi again.
On Fri, 2006-02-10 at 08:43 +0100, Michael Renzmann wrote:
> The attached patch ...
... contained some stuff that should have been ignored by diff. Sorry,
revised patch attached to this mail.
Bye, Mike
[-- Attachment #2: qemu-cvs-docs.diff --]
[-- Type: text/x-patch, Size: 2687 bytes --]
diff -urN qemu-cvs/Makefile qemu-cvs-o42/Makefile
--- qemu-cvs/Makefile 2006-02-08 23:39:17.000000000 +0100
+++ qemu-cvs-o42/Makefile 2006-02-10 08:31:17.000000000 +0100
@@ -28,6 +28,7 @@
# avoid old build problems by removing potentially incorrect old files
rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
rm -f *.o *.a $(TOOLS) dyngen$(EXESUF) TAGS *.pod *~ */*~
+ rm -f $(DOCS)
$(MAKE) -C tests clean
for d in $(TARGET_DIRS); do \
$(MAKE) -C $$d $@ || exit 1 ; \
@@ -43,7 +44,7 @@
ar de en-us fi fr-be hr it lv nl pl ru th \
common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
-install: all
+install: all
mkdir -p "$(bindir)"
install -m 755 -s $(TOOLS) "$(bindir)"
mkdir -p "$(datadir)"
@@ -52,11 +53,19 @@
pc-bios/ppc_rom.bin pc-bios/video.x \
pc-bios/proll.elf \
pc-bios/linux_boot.bin "$(datadir)"
- mkdir -p "$(docdir)"
- install -m 644 qemu-doc.html qemu-tech.html "$(docdir)"
+ if [ -f "./*.html" ]; then \
+ mkdir -p "$(docdir)" ; \
+ install -m 644 qemu-doc.html qemu-tech.html "$(docdir)" ; \
+ else \
+ echo "INFO: skipped installation of HTML documentation" ; \
+ fi
ifndef CONFIG_WIN32
- mkdir -p "$(mandir)/man1"
- install qemu.1 qemu-img.1 "$(mandir)/man1"
+ if [ -f "./*.1" ]; then \
+ mkdir -p "$(mandir)/man1" ; \
+ install qemu.1 qemu-img.1 "$(mandir)/man1" ; \
+ else \
+ echo "INFO: skipped installation of man pages" ; \
+ fi
mkdir -p "$(datadir)/keymaps"
install -m 644 $(addprefix keymaps/,$(KEYMAPS)) "$(datadir)/keymaps"
endif
@@ -78,15 +87,27 @@
# documentation
%.html: %.texi
- texi2html -monolithic -number $<
+ if [ -n "$(shell which texi2html)" ]; then \
+ texi2html -monolithic -number $< ; \
+ else \
+ echo "WARNING: texi2html not found, skipped generation of" $< ; \
+ fi
qemu.1: qemu-doc.texi
- ./texi2pod.pl $< qemu.pod
- pod2man --section=1 --center=" " --release=" " qemu.pod > $@
+ if [ -n "$(shell which pod2man)" ]; then \
+ ./texi2pod.pl $< qemu.pod ; \
+ pod2man --section=1 --center=" " --release=" " qemu.pod > $@ ; \
+ else \
+ echo "WARNING: pod2man not found, skipped generation of" $@ ; \
+ fi
qemu-img.1: qemu-img.texi
- ./texi2pod.pl $< qemu-img.pod
- pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
+ if [ -n "$(shell which pod2man)" ]; then \
+ ./texi2pod.pl $< qemu-img.pod ; \
+ pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@ ; \
+ else \
+ echo "WARNING: pod2man not found, skipped generation of" $@ ; \
+ fi
FILE=qemu-$(shell cat VERSION)
next prev parent reply other threads:[~2006-02-10 7:48 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-10 7:43 [Qemu-devel] [PATCH][RFC] Make documentation optional Michael Renzmann
2006-02-10 7:48 ` Michael Renzmann [this message]
2006-02-10 8:54 ` Bernhard Fischer
2006-02-10 8:59 ` Michael Renzmann
2006-02-10 9:33 ` Bernhard Fischer
2006-02-10 9:53 ` Michael Renzmann
2006-02-10 10:53 ` Sylvain Petreolle
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1139557720.5264.28.camel@gimli \
--to=mrenzmann@otaku42.de \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.