hc
2023-11-07 f45e756958099c35d6afb746df1d40a1c6302cfc
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)