mirror of
https://github.com/Ai-Thinker-Open/Ai-Thinker-Open_RTL8710BX_ALIOS_SDK.git
synced 2025-03-19 11:12:55 +00:00
15 lines
302 B
Makefile
15 lines
302 B
Makefile
NAME := libprov
|
|
|
|
GLOBAL_INCLUDES += ../include/prov
|
|
|
|
$(NAME)_COMPONENTS := alicrypto
|
|
$(NAME)_COMPONENTS += irot
|
|
|
|
ifeq ($(HOST_ARCH), linux)
|
|
HOST_NAME := $(HOST_ARCH)
|
|
else
|
|
HOST_NAME := $(shell echo $(CONFIG_SYSINFO_DEVICE_NAME)|tr A-Z a-z)
|
|
endif
|
|
|
|
$(NAME)_PREBUILT_LIBRARY := lib/$(HOST_NAME)/libprov.a
|
|
|