Skip to content

Commit

Permalink
libcacard: list oslib-obj-y file explicitly
Browse files Browse the repository at this point in the history
We will grow the list of files in the next patches, but libcacard
should remain slim.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
bonzini committed Jan 12, 2013
1 parent 26ca8c0 commit d9dc91a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion libcacard/Makefile
Expand Up @@ -3,7 +3,11 @@ libcacard_includedir=$(includedir)/cacard
TOOLS += vscclient$(EXESUF)

# objects linked into a shared library, built with libtool with -fPIC if required
libcacard-obj-y=$(oslib-obj-y) error.o $(trace-obj-y) $(stub-obj-y) $(libcacard-y)
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-lobj-y=$(patsubst %.o,%.lo,$(libcacard-obj-y))

# libtool will build the .o files, too
Expand Down

0 comments on commit d9dc91a

Please sign in to comment.