hc
2023-11-20 2e7bd41e4e8ab3d1efdabd9e263a2f7fe79bff8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# 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)