author | nemo |
Sat, 05 Feb 2022 10:50:25 -0500 | |
changeset 15835 | f0f615dcbe7c |
parent 6039 | d75329716a02 |
permissions | -rw-r--r-- |
6039
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
1 |
LOCAL_PATH := $(call my-dir) |
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
2 |
|
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
3 |
include $(CLEAR_VARS) |
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
4 |
|
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
5 |
LOCAL_MODULE := lua5.1 |
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
6 |
|
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
7 |
LOCAL_CFLAGS := -DANDROID |
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
8 |
|
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
9 |
LOCAL_SRC_FILES := lapi.c lauxlib.c lbaselib.c lcode.c ldblib.c ldebug.c ldo.c ldump.c lfunc.c lgc.c linit.c liolib.c llex.c lmathlib.c lmem.c loadlib.c lobject.c lopcodes.c loslib.c lparser.c lstate.c lstring.c lstrlib.c ltable.c ltablib.c ltm.c lundump.c lvm.c lzio.c |
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
10 |
|
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
11 |
include $(BUILD_SHARED_LIBRARY) |
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
12 |
|
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
13 |