Makefile 409 B

1234567891011121314151617181920212223242526
  1. # SPDX-License-Identifier: GPL-2.0
  2. # Greybus core
  3. greybus-y := core.o \
  4. debugfs.o \
  5. hd.o \
  6. manifest.o \
  7. module.o \
  8. interface.o \
  9. bundle.o \
  10. connection.o \
  11. control.o \
  12. svc.o \
  13. svc_watchdog.o \
  14. operation.o
  15. obj-$(CONFIG_GREYBUS) += greybus.o
  16. # needed for trace events
  17. ccflags-y += -I$(src)
  18. # Greybus Host controller drivers
  19. gb-es2-y := es2.o
  20. obj-$(CONFIG_GREYBUS_ES2) += gb-es2.o