The idea is to allow developing the NDK in the open, while having the platforms and samples under a private branch until the corresponding release are open-sourced. Change-Id: Iee995fb6c4d3ee1387dea7486e599e079c9e4c6d
10 lines
183 B
Makefile
10 lines
183 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := plasma
|
|
LOCAL_SRC_FILES := plasma.c
|
|
LOCAL_LDLIBS := -lm -llog -ljnigraphics
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|