Skip to content

Commit bf78955

Browse files
committed
add android.mk
1 parent bfc6311 commit bf78955

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

libhttp/Android.mk

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
LOCAL_PATH := $(call my-dir)
2+
3+
include $(CLEAR_VARS)
4+
LOCAL_CFLAGS += -DOS_LINUX -DOS_ANDROID
5+
LOCAL_LDLIBS +=
6+
7+
LOCAL_C_INCLUDES := $(LOCAL_PATH)
8+
LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
9+
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../include
10+
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../libaio/include
11+
12+
LOCAL_SRC_FILES += $(wildcard source/*.c)
13+
LOCAL_SRC_FILES += $(wildcard source/*.cpp)
14+
15+
LOCAL_MODULE := http
16+
include $(BUILD_STATIC_LIBRARY)

libice/Android.mk

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
LOCAL_PATH := $(call my-dir)
2+
3+
include $(CLEAR_VARS)
4+
LOCAL_CFLAGS += -DOS_LINUX -DOS_ANDROID
5+
LOCAL_LDLIBS +=
6+
7+
LOCAL_C_INCLUDES := $(LOCAL_PATH)
8+
LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
9+
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../include
10+
11+
LOCAL_SRC_FILES += $(wildcard src/*.c)
12+
LOCAL_SRC_FILES += $(wildcard src/*.cpp)
13+
14+
LOCAL_MODULE := ice
15+
include $(BUILD_STATIC_LIBRARY)

0 commit comments

Comments
 (0)