diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-01-19 11:06:45 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-01-26 13:14:26 +0000 |
commit | 659800159092333593084593abed2d85c51c5a16 (patch) | |
tree | 371968d31617c946aebb241458e9affc099ccc94 /Makefile.objs | |
parent | 5f7a74a1a605d2065c3d74e42b563d69241089ec (diff) |
build: move around libcacard-y definition
It is also needed if !CONFIG_SOFTMMU, unlike everything that surrounds it.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'Makefile.objs')
-rw-r--r-- | Makefile.objs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile.objs b/Makefile.objs index d465a72030..3548f9be95 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) ###################################################################### |