summaryrefslogtreecommitdiff
path: root/Makefile.target
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2009-06-06 08:22:04 +0000
committerBlue Swirl <blauwirbel@gmail.com>2009-06-06 08:22:04 +0000
commit2313086addaf609c5f64636591818eebc213fd53 (patch)
treeca963a3bae5f7baf1f0c68f1be2444c8ab266e6e /Makefile.target
parent25517f999fbbaca4b63423c413629faa1f8eeb71 (diff)
downloadqemu-2313086addaf609c5f64636591818eebc213fd53.tar.gz
Use hxtool to generate monitor documentation and C structures
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r--Makefile.target8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target
index 445d55f60b..27de4b9504 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -732,6 +732,8 @@ endif
vl.o: qemu-options.h
+monitor.o: qemu-monitor.h
+
$(QEMU_PROG): LIBS += $(SDL_LIBS) $(COCOA_LIBS) $(CURSES_LIBS) $(BRLAPI_LIBS) $(VDE_LIBS) $(CURL_LIBS)
$(QEMU_PROG): ARLIBS=../libqemu_common.a libqemu.a $(HWLIB)
$(QEMU_PROG): $(OBJS) ../libqemu_common.a libqemu.a $(HWLIB)
@@ -749,9 +751,13 @@ endif
qemu-options.h: $(SRC_PATH)/qemu-options.hx
$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
+qemu-monitor.h: $(SRC_PATH)/qemu-monitor.hx
+ $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
+
clean:
- rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o qemu-options.h gdbstub-xml.c
+ rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
rm -f *.d */*.d tcg/*.o
+ rm -f qemu-options.h qemu-monitor.h gdbstub-xml.c
install: all
ifneq ($(PROGS),)