From patchwork Sat Jan 19 10:06:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/4] build: move around libcacard-y definition Date: Sat, 19 Jan 2013 00:06:45 -0000 From: Paolo Bonzini X-Patchwork-Id: 213814 Message-Id: <1358590008-1681-2-git-send-email-pbonzini@redhat.com> To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, afaerber@suse.de It is also needed if !CONFIG_SOFTMMU, unlike everything that surrounds it. Signed-off-by: Paolo Bonzini --- Makefile.objs | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index d465a72..3548f9b 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -34,6 +34,15 @@ CONFIG_REALLY_VIRTFS=y endif ###################################################################### +# smartcard + +libcacard-y += libcacard/cac.o libcacard/event.o +libcacard-y += libcacard/vcard.o libcacard/vreader.o +libcacard-y += libcacard/vcard_emul_nss.o +libcacard-y += libcacard/vcard_emul_type.o +libcacard-y += libcacard/card_7816.o + +###################################################################### # Target independent part of system emulation. The long term path is to # suppress *all* target specific code in case of system emulation, i.e. a # single QEMU executable should support all CPUs and machines. @@ -77,15 +86,6 @@ ifeq ($(CONFIG_SECCOMP),y) common-obj-y += qemu-seccomp.o endif -###################################################################### -# smartcard - -libcacard-y += libcacard/cac.o libcacard/event.o -libcacard-y += libcacard/vcard.o libcacard/vreader.o -libcacard-y += libcacard/vcard_emul_nss.o -libcacard-y += libcacard/vcard_emul_type.o -libcacard-y += libcacard/card_7816.o - common-obj-$(CONFIG_SMARTCARD_NSS) += $(libcacard-y) ######################################################################