mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
5e6b2e9c45
For third party components (lwip and expat), compilation flags are adjusted to silence existing warnings (i have manually checked that all warnings are benign). In components/esp32, replaced use of WIFI_DEBUG with ESP_LOG functions. Only remaining warning is in FreeRTOS queue.c, and it may be a useful one.
16 lines
538 B
Makefile
16 lines
538 B
Makefile
#
|
|
# Component Makefile
|
|
#
|
|
# This Makefile should, at the very least, just include $(SDK_PATH)/Makefile. By default,
|
|
# this will take the sources in this directory, compile them and link them into
|
|
# lib(subdirectory_name).a in the build directory. This behaviour is entirely configurable,
|
|
# please read the SDK documents if you need to do this.
|
|
#
|
|
COMPONENT_ADD_INCLUDEDIRS := port/include include/expat
|
|
|
|
COMPONENT_SRCDIRS := library port
|
|
|
|
CFLAGS += -Wno-unused-function -DHAVE_EXPAT_CONFIG_H
|
|
|
|
include $(IDF_PATH)/make/component_common.mk
|