component.mk 468 B

123456789101112131415161718
  1. COMPONENT_PRIV_INCLUDEDIRS := private_include
  2. COMPONENT_ADD_INCLUDEDIRS : include
  3. COMPONENT_SRCDIRS := .
  4. COMPONENT_OBJS := ccomp_timer.o test_runner.o test_utils.o
  5. ifdef CONFIG_IDF_TARGET_ESP32
  6. COMPONENT_OBJS += ref_clock_impl_rmt_pcnt.o
  7. else
  8. COMPONENT_OBJS += ref_clock_impl_timergroup.o
  9. endif
  10. ifdef CONFIG_IDF_TARGET_ARCH_RISCV
  11. COMPONENT_OBJS += ccomp_timer_impl_riscv.o
  12. endif
  13. ifdef CONFIG_IDF_TARGET_ARCH_XTENSA
  14. COMPONENT_OBJS += ccomp_timer_impl_xtensa.o
  15. endif