Change-Id: I05b909636d54cb75ff1e4382ade3de8088066d3e Signed-off-by: Eddie Cai <eddie.cai.linux@gmail.com>
20 lines
566 B
Plaintext
Executable File
20 lines
566 B
Plaintext
Executable File
#
|
|
# 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)
|