libXau Android.mk

This commit is contained in:
2018-01-24 21:08:56 +08:00
parent deff47305e
commit 81f2356a2c
2 changed files with 38 additions and 0 deletions

View File

@@ -11,6 +11,9 @@ cp ../../fontsproto-2.1.2/*.h fonts
#libfontenc #libfontenc
cp ../../../libfontenc-1.1.2/include/X11/fonts/*.h fonts cp ../../../libfontenc-1.1.2/include/X11/fonts/*.h fonts
#libXfont
cp ../../../libXfont-1.4.6/include/X11/fonts/*.h fonts
#xtrans-1.2.7 #xtrans-1.2.7
cp ../../../xtrans-1.2.7/*.h Xtrans cp ../../../xtrans-1.2.7/*.h Xtrans
cp ../../../xtrans-1.2.7/*.c Xtrans cp ../../../xtrans-1.2.7/*.c Xtrans

View File

@@ -0,0 +1,35 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SDK_VERSION := 21
LOCAL_MODULE := libXau
LOCAL_C_INCLUDES := \
$(LOCAL_PATH)/../header/include \
$(LOCAL_PATH)/include/X11 \
$(LOCAL_PATH) \
$(LOCAL_PATH)/include \
LOCAL_CFLAGS := -DHAVE_CONFIG_H
LOCAL_SRC_FILES := \
$(LOCAL_PATH)/AuDispose.c \
$(LOCAL_PATH)/AuFileName.c \
$(LOCAL_PATH)/AuGetAddr.c \
$(LOCAL_PATH)/AuGetBest.c \
$(LOCAL_PATH)/AuLock.c \
$(LOCAL_PATH)/AuRead.c \
$(LOCAL_PATH)/AuUnlock.c \
$(LOCAL_PATH)/AuWrite.c
LOCAL_SHARED_LIBRARIES :=
LOCAL_STATIC_LIBRARIES :=
LOCAL_LDLIBS := -llog -lc -lm -ldl -lz
include $(BUILD_SHARED_LIBRARY)