Makefile 422 B

1234567891011121314
  1. #
  2. # This is a project Makefile. It is assumed the directory this Makefile resides in is a
  3. # project subdirectory.
  4. #
  5. CFLAGS += -DWOLFSSL_USER_SETTINGS
  6. # Some of the tests are CPU intenstive, so we'll force the watchdog timer off.
  7. # There's an espressif NO_WATCHDOG; we don't use it, as it is reset by sdkconfig.
  8. EXTRA_CFLAGS += -DWOLFSSL_ESP_NO_WATCHDOG
  9. PROJECT_NAME := wolfssl_test
  10. include $(IDF_PATH)/make/project.mk