mirror of https://github.com/xqemu/xqemu.git
Rename qemu-options.h to qemu-options.def
Rename qemu-options.h to qemu-options.def as it is not a header file for general use and this leaves space for a proper qemu-options.h Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Acked-by: Juan Quintela <quintela@redhat.com> Acked-by: Richard Henderson <rth@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
6170540b82
commit
9f16732a06
|
@ -258,8 +258,8 @@ vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
|
||||||
|
|
||||||
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
|
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
|
||||||
|
|
||||||
vl.o: qemu-options.h
|
vl.o: qemu-options.def
|
||||||
|
|
||||||
qemu-options.h: $(SRC_PATH)/qemu-options.hx
|
qemu-options.def: $(SRC_PATH)/qemu-options.hx
|
||||||
$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
|
$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $(TARGET_DIR)$@")
|
||||||
|
|
||||||
|
|
6
vl.c
6
vl.c
|
@ -1875,7 +1875,7 @@ static void help(int exitcode)
|
||||||
#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
|
#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
|
||||||
opt_help
|
opt_help
|
||||||
#define DEFHEADING(text) stringify(text) "\n"
|
#define DEFHEADING(text) stringify(text) "\n"
|
||||||
#include "qemu-options.h"
|
#include "qemu-options.def"
|
||||||
#undef DEF
|
#undef DEF
|
||||||
#undef DEFHEADING
|
#undef DEFHEADING
|
||||||
#undef GEN_DOCS
|
#undef GEN_DOCS
|
||||||
|
@ -1903,7 +1903,7 @@ enum {
|
||||||
#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
|
#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
|
||||||
opt_enum,
|
opt_enum,
|
||||||
#define DEFHEADING(text)
|
#define DEFHEADING(text)
|
||||||
#include "qemu-options.h"
|
#include "qemu-options.def"
|
||||||
#undef DEF
|
#undef DEF
|
||||||
#undef DEFHEADING
|
#undef DEFHEADING
|
||||||
#undef GEN_DOCS
|
#undef GEN_DOCS
|
||||||
|
@ -1921,7 +1921,7 @@ static const QEMUOption qemu_options[] = {
|
||||||
#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
|
#define DEF(option, opt_arg, opt_enum, opt_help, arch_mask) \
|
||||||
{ option, opt_arg, opt_enum, arch_mask },
|
{ option, opt_arg, opt_enum, arch_mask },
|
||||||
#define DEFHEADING(text)
|
#define DEFHEADING(text)
|
||||||
#include "qemu-options.h"
|
#include "qemu-options.def"
|
||||||
#undef DEF
|
#undef DEF
|
||||||
#undef DEFHEADING
|
#undef DEFHEADING
|
||||||
#undef GEN_DOCS
|
#undef GEN_DOCS
|
||||||
|
|
Loading…
Reference in New Issue