mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-02-04 17:25:42 +00:00
* get and post to PLATFORM_ECR6600 * test * Update http_client.c * t * need timer * iotx_net_init ? * Update utils_timer.c * try os_time_get * try ENABLE_SEND_POSTANDGET on bl602 as welll * Update utils_net.h * add httpclient to boufallo mk * Update utils_timer.c * Update new_common.h * time * try ln882h * Update utils_timer.c * OS_STRCPY ETCCC * esp IDF * Update new_common.h * Update utils_timer.c * Update new_common.h * remove hal_machw_time_past dependency * lwip_close_force better * stub * simplifyu * omg typo * revert * remove os_strcpy * remove os_strlen * memmove * os_strcmp * os_strstr * mem func * try on xradio * #define lwip_close_force(x) lwip_close(x) * SWAP * typo * Update utils_timer.c * rtl * Update new_common.h * tr * #include <stdint.h> is reduntant * clean hdr * those headers could be common * those headers could be common * disable --------- Co-authored-by: Tester23 <85486843+openshwprojects@users.noreply.github.com>
20 lines
924 B
Makefile
20 lines
924 B
Makefile
# Component Makefile
|
|
#
|
|
## These include paths would be exported to project level
|
|
COMPONENT_ADD_INCLUDEDIRS += src/ src/httpserver/ src/httpclient/ src/cmnds/ src/logging/ src/hal/bl602/ src/mqtt/ src/cJSON src/base64 src/driver src/devicegroups src/bitmessage src/littlefs libraries/berry/src include/
|
|
|
|
## not be exported to project level
|
|
COMPONENT_PRIV_INCLUDEDIRS :=
|
|
|
|
CFLAGS += -DOBK_VARIANT=${OBK_VARIANT}
|
|
|
|
## This component's src
|
|
COMPONENT_SRCS :=
|
|
|
|
COMPONENT_OBJS := $(patsubst %.c,%.o, $(COMPONENT_SRCS))
|
|
COMPONENT_OBJS := $(patsubst %.S,%.o, $(COMPONENT_OBJS))
|
|
|
|
COMPONENT_SRCDIRS := src/ src/jsmn src/httpserver/ src/httpclient/ src/cmnds/ src/logging/ src/hal/bl602/ src/mqtt/ src/i2c/ src/cJSON src/base64 src/driver src/devicegroups src/bitmessage src/littlefs src/hal/generic libraries/berry/src src/berry src/berry/modules
|
|
|
|
COMPONENT_ADD_LDFLAGS = -Wl,--whole-archive -l$(COMPONENT_NAME) -Wl,--no-whole-archive
|