#
|
# this is a template for aimakefile
|
# you just need to initialize the following variables
|
# then you can compile your project into executable, static libarary or shared library for specific platform, e.g. ios, android, linux, darwin
|
#
|
|
#LOCAL_SRC_DIRS := foo
|
#LOCAL_SRC_DIRS_EXCULDE := foo/foo2
|
LOCAL_SRC_FILES := foo.c func.cpp
|
#LOCAL_SRC_FILES_EXCLUDE := func.cpp
|
|
LOCAL_MODULE := foo
|
LOCAL_CFLAGS := -w
|
LOCAL_CXXFLAGS := -Wall -O3
|
#LOCAL_LDFLAGS := -lpthread
|
|
include $(BUILD_EXECUTABLE)
|
#include $(BUILD_STATIC_LIBRARY)
|
#include $(BUILD_SHARED_LIBRARY)
|