Makefile 315 B

12345678910111213141516171819
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # Copyright (c) 2017 Google, Inc
  4. obj-$(CONFIG_LOG_TEST) += log_test.o
  5. ifdef CONFIG_UT_LOG
  6. obj-y += test-main.o
  7. ifdef CONFIG_SANDBOX
  8. obj-$(CONFIG_LOG_SYSLOG) += syslog_test.o
  9. endif
  10. ifndef CONFIG_LOG
  11. obj-$(CONFIG_CONSOLE_RECORD) += nolog_test.o
  12. endif
  13. endif # CONFIG_UT_LOG