blob: 5221265f5315163baf60825f20725f9e4b73470a [file] [log] [blame]
Igor Opaniuk06fe31c2017-08-07 02:37:51 +03001###################### optee-random ######################
2LOCAL_PATH := $(call my-dir)
3
4OPTEE_CLIENT_EXPORT = $(LOCAL_PATH)/../../optee_client/out/export
5
6include $(CLEAR_VARS)
7LOCAL_CFLAGS += -DANDROID_BUILD
8LOCAL_CFLAGS += -Wall
9
10LOCAL_SRC_FILES += host/main.c
11
12LOCAL_C_INCLUDES := $(LOCAL_PATH)/ta/include \
Etienne Carriered3cb2762017-11-09 15:45:53 +010013 $(OPTEE_CLIENT_EXPORT)/include
Igor Opaniuk06fe31c2017-08-07 02:37:51 +030014
15LOCAL_SHARED_LIBRARIES := libteec
Etienne Carriered3cb2762017-11-09 15:45:53 +010016LOCAL_MODULE := optee_example_random
Igor Opaniuk06fe31c2017-08-07 02:37:51 +030017LOCAL_MODULE_TAGS := optional
18include $(BUILD_EXECUTABLE)
19
20include $(LOCAL_PATH)/ta/Android.mk