diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-06-06 08:22:04 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-06-06 08:22:04 +0000 |
commit | 2313086addaf609c5f64636591818eebc213fd53 (patch) | |
tree | ca963a3bae5f7baf1f0c68f1be2444c8ab266e6e /Makefile | |
parent | 25517f999fbbaca4b63423c413629faa1f8eeb71 (diff) |
Use hxtool to generate monitor documentation and C structures
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -332,7 +332,10 @@ cscope: qemu-options.texi: $(SRC_PATH)/qemu-options.hx $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") -qemu.1: qemu-doc.texi qemu-options.texi +qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx + $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@") + +qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi $(call quiet-command, \ perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \ pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \ @@ -356,7 +359,7 @@ dvi: qemu-doc.dvi qemu-tech.dvi html: qemu-doc.html qemu-tech.html -qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi +qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-monitor.texi VERSION ?= $(shell cat VERSION) FILE = qemu-$(VERSION) |