author | Xeli |
Sat, 08 Oct 2011 14:55:13 +0200 | |
branch | hedgeroid |
changeset 6039 | d75329716a02 |
permissions | -rwxr-xr-x |
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 := tremor |
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 := -I$(LOCAL_PATH) -DHAVE_ALLOCA_H |
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 |
# Note this simple makefile var substitution, you can find even simpler examples in different Android projects |
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
10 |
LOCAL_SRC_FILES := $(notdir $(wildcard $(LOCAL_PATH)/*.c)) |
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
11 |
|
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
12 |
include $(BUILD_STATIC_LIBRARY) |
d75329716a02
Removed the need for duplicate libraries, the android build now uses lua, freetype and tremor from misc/
Xeli
parents:
diff
changeset
|
13 |