rules.mak: remove version.o
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
10e1d2636d
commit
8000047e99
5
Makefile
5
Makefile
@ -241,11 +241,6 @@ recurse-clean: $(addsuffix /clean, $(TARGET_DIRS) $(ROM_DIRS))
|
|||||||
recurse-install: $(addsuffix /install, $(TARGET_DIRS))
|
recurse-install: $(addsuffix /install, $(TARGET_DIRS))
|
||||||
$(addsuffix /install, $(TARGET_DIRS)): all
|
$(addsuffix /install, $(TARGET_DIRS)): all
|
||||||
|
|
||||||
$(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc config-host.h
|
|
||||||
$(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"RC","version.o")
|
|
||||||
|
|
||||||
Makefile: $(version-obj-y)
|
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
clean: recurse-clean ninja-clean clean-ctlist
|
clean: recurse-clean ninja-clean clean-ctlist
|
||||||
|
@ -32,7 +32,3 @@ crypto-obj-y = crypto/libcrypto.fa
|
|||||||
io-obj-y = io/libio.fa
|
io-obj-y = io/libio.fa
|
||||||
|
|
||||||
endif # CONFIG_SOFTMMU or CONFIG_TOOLS
|
endif # CONFIG_SOFTMMU or CONFIG_TOOLS
|
||||||
|
|
||||||
######################################################################
|
|
||||||
# Resource file for Windows executables
|
|
||||||
version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o
|
|
||||||
|
@ -77,8 +77,6 @@ expand-objs = $(strip $(sort $(filter %.o,$1)) \
|
|||||||
$(call quiet-command,$(CC) $(QEMU_LOCAL_INCLUDES) $(QEMU_INCLUDES) \
|
$(call quiet-command,$(CC) $(QEMU_LOCAL_INCLUDES) $(QEMU_INCLUDES) \
|
||||||
$(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) $($@-cflags) \
|
$(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) $($@-cflags) \
|
||||||
-c -o $@ $<,"CC","$(TARGET_DIR)$@")
|
-c -o $@ $<,"CC","$(TARGET_DIR)$@")
|
||||||
%.o: %.rc
|
|
||||||
$(call quiet-command,$(WINDRES) -I. -o $@ $<,"RC","$(TARGET_DIR)$@")
|
|
||||||
|
|
||||||
# If we have a CXX we might have some C++ objects, in which case we
|
# If we have a CXX we might have some C++ objects, in which case we
|
||||||
# must link with the C++ compiler, not the plain C compiler.
|
# must link with the C++ compiler, not the plain C compiler.
|
||||||
@ -86,7 +84,7 @@ LINKPROG = $(or $(CXX),$(CC))
|
|||||||
|
|
||||||
LINK = $(call quiet-command, $(LINKPROG) $(CFLAGS) $(QEMU_LDFLAGS) -o $@ \
|
LINK = $(call quiet-command, $(LINKPROG) $(CFLAGS) $(QEMU_LDFLAGS) -o $@ \
|
||||||
$(call process-archive-undefs, $1) \
|
$(call process-archive-undefs, $1) \
|
||||||
$(version-obj-y) $(call extract-libs,$1) $(LIBS),"LINK","$(TARGET_DIR)$@")
|
$(call extract-libs,$1) $(LIBS),"LINK","$(TARGET_DIR)$@")
|
||||||
|
|
||||||
%.o: %.S
|
%.o: %.S
|
||||||
$(call quiet-command,$(CCAS) $(QEMU_LOCAL_INCLUDES) $(QEMU_INCLUDES) \
|
$(call quiet-command,$(CCAS) $(QEMU_LOCAL_INCLUDES) $(QEMU_INCLUDES) \
|
||||||
|
Loading…
Reference in New Issue
Block a user