mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-08 17:00:49 +02:00
15 lines
418 B
Makefile
15 lines
418 B
Makefile
#
|
|
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
|
|
# project subdirectory.
|
|
#
|
|
|
|
CFLAGS += -DWOLFSSL_USER_SETTINGS
|
|
|
|
# Some of the tests are CPU intenstive, so we'll force the watchdog timer off.
|
|
# There's an espressif NO_WATCHDOG; we don't use it, as it is reset by sdkconfig.
|
|
CFLAGS += -DWOLFSSL_ESP_NO_WATCHDOG=1
|
|
|
|
PROJECT_NAME := wolfssl_test
|
|
|
|
include $(IDF_PATH)/make/project.mk
|