9d171bd937
Currently all what's needed for single file libcacard/vcard_emul_nss.c (libnss cflags) and hw/usb/ccid-card-emulated.c (libcacard includes) together with the libs is added to global QEMU_CFLAGS and libs_softmmu. Use the cflags only where really used (for two mentioned files), and libs only where needed. While at it, rename variables to better reflect reality: libcacard_* is really nss_*. This needs a bit more tweaking: $(NSS_LIBS) should not contain $glib_libs (ditto for _cflags). But in order to fix it, some more preparations should be made first. So add a FIXME comment. Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
39 lines
1.3 KiB
Makefile
39 lines
1.3 KiB
Makefile
# usb subsystem core
|
|
common-obj-y += core.o combined-packet.o bus.o desc.o desc-msos.o
|
|
common-obj-y += libhw.o
|
|
|
|
# usb host adapters
|
|
common-obj-$(CONFIG_USB_UHCI) += hcd-uhci.o
|
|
common-obj-$(CONFIG_USB_OHCI) += hcd-ohci.o
|
|
common-obj-$(CONFIG_USB_EHCI) += hcd-ehci.o hcd-ehci-pci.o hcd-ehci-sysbus.o
|
|
common-obj-$(CONFIG_USB_XHCI) += hcd-xhci.o
|
|
common-obj-$(CONFIG_USB_MUSB) += hcd-musb.o
|
|
|
|
# emulated usb devices
|
|
common-obj-y += dev-hub.o
|
|
common-obj-y += dev-hid.o
|
|
common-obj-$(CONFIG_USB_TABLET_WACOM) += dev-wacom.o
|
|
common-obj-$(CONFIG_USB_STORAGE_BOT) += dev-storage.o
|
|
common-obj-$(CONFIG_USB_STORAGE_UAS) += dev-uas.o
|
|
common-obj-$(CONFIG_USB_AUDIO) += dev-audio.o
|
|
common-obj-$(CONFIG_USB_SERIAL) += dev-serial.o
|
|
common-obj-$(CONFIG_USB_NETWORK) += dev-network.o
|
|
common-obj-$(CONFIG_USB_BLUETOOTH) += dev-bluetooth.o
|
|
|
|
ifeq ($(CONFIG_USB_SMARTCARD),y)
|
|
common-obj-y += dev-smartcard-reader.o
|
|
common-obj-y += ccid-card-passthru.o
|
|
common-obj-$(CONFIG_SMARTCARD_NSS) += ccid-card-emulated.o
|
|
ccid-card-emulated.o-cflags := -I$(SRC_PATH)/libcacard
|
|
endif
|
|
|
|
ifeq ($(CONFIG_POSIX),y)
|
|
common-obj-$(CONFIG_USB_STORAGE_MTP) += dev-mtp.o
|
|
endif
|
|
|
|
# usb redirection
|
|
common-obj-$(CONFIG_USB_REDIR) += redirect.o quirks.o
|
|
|
|
# usb pass-through
|
|
common-obj-y += $(patsubst %,host-%.o,$(HOST_USB))
|