mirror of
https://github.com/espressif/esp-sr.git
synced 2025-09-15 15:28:44 +08:00
12 lines
254 B
Makefile
12 lines
254 B
Makefile
COMPONENT_ADD_INCLUDEDIRS := include
|
|
|
|
COMPONENT_SRCDIRS := .
|
|
|
|
LIB_FILES := $(shell ls $(COMPONENT_PATH)/lib*.a)
|
|
|
|
LIBS := $(patsubst lib%.a,-l%,$(notdir $(LIB_FILES)))
|
|
|
|
COMPONENT_ADD_LDFLAGS += -L$(COMPONENT_PATH)/ $(LIBS)
|
|
|
|
ALL_LIB_FILES += $(LIB_FILES)
|