diff options
author | Fam Zheng <famz@redhat.com> | 2017-09-07 16:29:18 +0800 |
---|---|---|
committer | Fam Zheng <famz@redhat.com> | 2017-09-22 10:20:34 +0800 |
commit | cc7923fc0762c80f9cc140a20014b3cc8f3dd0aa (patch) | |
tree | a541616c8c70e28508b8a1c3d56ad299117c36ae /hw | |
parent | b878b652df08360e5440710acf987d6b6ab945b7 (diff) |
buildsys: Move usb redir cflags/libs to per object
Signed-off-by: Fam Zheng <famz@redhat.com>
Message-Id: <20170907082918.7299-10-famz@redhat.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Fam Zheng <famz@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/usb/Makefile.objs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/usb/Makefile.objs b/hw/usb/Makefile.objs index 05afbd36fa..9255234c63 100644 --- a/hw/usb/Makefile.objs +++ b/hw/usb/Makefile.objs @@ -38,6 +38,8 @@ endif # usb redirection common-obj-$(CONFIG_USB_REDIR) += redirect.o quirks.o +redirect.o-cflags = $(USB_REDIR_CFLAGS) +redirect.o-libs = $(USB_REDIR_LIBS) # usb pass-through ifeq ($(CONFIG_LIBUSB)$(CONFIG_USB),yy) |