Makefile 415 B

1234567891011121314151617
  1. #
  2. # This is a project Makefile for the test subproject.
  3. #
  4. PROJECT_NAME := unit_test_test
  5. # Include the components directory of the main application:
  6. #
  7. EXTRA_COMPONENT_DIRS := $(realpath ../components)
  8. # Set the components to include the tests for.
  9. # This can be overriden from the command line
  10. # (e.g. 'make TEST_COMPONENTS=xxxx flash monitor')
  11. #
  12. TEST_COMPONENTS ?= testable
  13. include $(IDF_PATH)/make/project.mk