Skip to content

Commit

Permalink
build: move libqemuutil.a components to util/
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Bonzini <[email protected]>
  • Loading branch information
bonzini committed Jan 12, 2013
1 parent f157ebb commit baacf04
Show file tree
Hide file tree
Showing 31 changed files with 15 additions and 13 deletions.
12 changes: 2 additions & 10 deletions Makefile.objs
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,7 @@ universal-obj-y += $(hw-core-obj-y)

#######################################################################
# util-obj-y is code depending on the OS (win32 vs posix)
util-obj-y = osdep.o cutils.o qemu-timer-common.o
util-obj-$(CONFIG_WIN32) += oslib-win32.o qemu-thread-win32.o event_notifier-win32.o
util-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o event_notifier-posix.o
util-obj-y += envlist.o path.o host-utils.o cache-utils.o module.o
util-obj-y += bitmap.o bitops.o
util-obj-y += acl.o
util-obj-y += error.o qemu-error.o
util-obj-$(CONFIG_POSIX) += compatfd.o
util-obj-y += iov.o aes.o qemu-config.o qemu-sockets.o uri.o notify.o
util-obj-y += qemu-option.o qemu-progress.o
util-obj-y += util/

#######################################################################
# coroutines
Expand Down Expand Up @@ -177,6 +168,7 @@ QEMU_CFLAGS+=$(GLIB_CFLAGS)

nested-vars += \
stub-obj-y \
util-obj-y \
qga-obj-y \
qom-obj-y \
qapi-obj-y \
Expand Down
6 changes: 3 additions & 3 deletions libcacard/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ TOOLS += vscclient$(EXESUF)

# objects linked into a shared library, built with libtool with -fPIC if required
libcacard-obj-y = $(trace-obj-y) $(stub-obj-y) $(libcacard-y)
libcacard-obj-y += osdep.o cutils.o qemu-timer-common.o error.o
libcacard-obj-$(CONFIG_WIN32) += oslib-win32.o qemu-thread-win32.o
libcacard-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o
libcacard-obj-y += util/osdep.o util/cutils.o util/qemu-timer-common.o util/error.o
libcacard-obj-$(CONFIG_WIN32) += util/oslib-win32.o util/qemu-thread-win32.o
libcacard-obj-$(CONFIG_POSIX) += util/oslib-posix.o util/qemu-thread-posix.o

libcacard-lobj-y=$(patsubst %.o,%.lo,$(libcacard-obj-y))

Expand Down
10 changes: 10 additions & 0 deletions util/Makefile.objs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
util-obj-y = osdep.o cutils.o qemu-timer-common.o
util-obj-$(CONFIG_WIN32) += oslib-win32.o qemu-thread-win32.o event_notifier-win32.o
util-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o event_notifier-posix.o
util-obj-y += envlist.o path.o host-utils.o cache-utils.o module.o
util-obj-y += bitmap.o bitops.o
util-obj-y += acl.o
util-obj-y += error.o qemu-error.o
util-obj-$(CONFIG_POSIX) += compatfd.o
util-obj-y += iov.o aes.o qemu-config.o qemu-sockets.o uri.o notify.o
util-obj-y += qemu-option.o qemu-progress.o
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit baacf04

Please sign in to comment.