mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-08 05:50:47 +02:00
24 lines
860 B
Makefile
24 lines
860 B
Makefile
#
|
|
# Main component makefile.
|
|
#
|
|
# This Makefile can be left empty. By default, it will take the sources in the
|
|
# src/ directory, compile them and link them into lib(subdirectory_name).a
|
|
# in the build directory. This behavior is entirely configurable,
|
|
# please read the ESP-IDF documents if you need to do this.
|
|
#
|
|
# (Uses default behavior of compiling all source files in directory, adding 'include' to include path.)
|
|
|
|
# We'll add the explicit lines only for old SDK requirements (e.h. ESP8266)
|
|
|
|
ifeq ("$(VISUALGDB_DIR)","")
|
|
$(info VISUALGDB_DIR build not detected. shell: $(shell echo $$SHELL) )
|
|
else
|
|
$(info Detected VisualGDB in: $(VISUALGDB_DIR) shell: $(shell echo $$SHELL) )
|
|
COMPONENT_SRCDIRS := .
|
|
COMPONENT_ADD_INCLUDEDIRS := .
|
|
COMPONENT_ADD_INCLUDEDIRS += include
|
|
|
|
# Ensure main.c gets compiled
|
|
COMPONENT_OBJS := main.o
|
|
endif
|