Igor Opaniuk | 06fe31c | 2017-08-07 02:37:51 +0300 | [diff] [blame] | 1 | ###################### optee-hello-world ###################### |
| 2 | LOCAL_PATH := $(call my-dir) |
| 3 | |
Igor Opaniuk | 06fe31c | 2017-08-07 02:37:51 +0300 | [diff] [blame] | 4 | include $(CLEAR_VARS) |
| 5 | LOCAL_CFLAGS += -DANDROID_BUILD |
| 6 | LOCAL_CFLAGS += -Wall |
| 7 | |
| 8 | LOCAL_SRC_FILES += host/main.c |
| 9 | |
Victor Chong | 88bf8a3 | 2021-05-06 08:37:08 +0100 | [diff] [blame] | 10 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/ta/include |
Igor Opaniuk | 06fe31c | 2017-08-07 02:37:51 +0300 | [diff] [blame] | 11 | |
| 12 | LOCAL_SHARED_LIBRARIES := libteec |
Etienne Carriere | d3cb276 | 2017-11-09 15:45:53 +0100 | [diff] [blame] | 13 | LOCAL_MODULE := optee_example_hello_world |
Victor Chong | c3c4c89 | 2018-06-22 14:44:13 +0900 | [diff] [blame] | 14 | LOCAL_VENDOR_MODULE := true |
Igor Opaniuk | 06fe31c | 2017-08-07 02:37:51 +0300 | [diff] [blame] | 15 | LOCAL_MODULE_TAGS := optional |
| 16 | include $(BUILD_EXECUTABLE) |
| 17 | |
| 18 | include $(LOCAL_PATH)/ta/Android.mk |