mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-07 14:40:50 +02:00
15 lines
422 B
Makefile
15 lines
422 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_template
|
|
|
|
include $(IDF_PATH)/make/project.mk
|