Makefile 351 B

12345678910111213141516
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # for Renesas USB
  4. #
  5. obj-$(CONFIG_USB_RENESAS_USBHS) += renesas_usbhs.o
  6. renesas_usbhs-y := common.o mod.o pipe.o fifo.o rcar2.o rcar3.o rza.o rza2.o
  7. ifneq ($(CONFIG_USB_RENESAS_USBHS_HCD),)
  8. renesas_usbhs-y += mod_host.o
  9. endif
  10. ifneq ($(CONFIG_USB_RENESAS_USBHS_UDC),)
  11. renesas_usbhs-y += mod_gadget.o
  12. endif