mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fce359b240
Simplifies examples of embedding a certificate file or a root cert. This is a much cruder mechanism than the full flash filesystem we want eventually, but still sometimes useful.
10 lines
246 B
Makefile
10 lines
246 B
Makefile
#
|
|
# Main Makefile. This is basically the same as a component makefile.
|
|
#
|
|
|
|
# embed files from the "certs" directory as binary data symbols
|
|
# in the app
|
|
COMPONENT_EMBED_TXTFILES := server_root_cert.pem
|
|
|
|
include $(IDF_PATH)/make/component_common.mk
|