You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
316 B
16 lines
316 B
#Android makefile for uim
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= uim.c
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/
|
|
|
|
LOCAL_MODULE := uim
|
|
LOCAL_LICENSE_KINDS := SPDX-license-identifier-GPL-2.0
|
|
LOCAL_LICENSE_CONDITIONS := restricted
|
|
LOCAL_PROPRIETARY_MODULE := true
|
|
|
|
include $(BUILD_EXECUTABLE)
|