Makefile文件  |  42行  |  721 B

# Copyright 2005 The Android Open Source Project
#
# Android.mk for TinyXml.
#
# Add -DTIXML_USE_STL to CFLAGS to use STL.
#

commonSources:= \
	tinyxml.cpp \
	tinyxmlparser.cpp \
	tinyxmlerror.cpp \
	tinystr.cpp

# For the host
# =====================================================
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
	$(commonSources)

LOCAL_MODULE:= libtinyxml

LOCAL_CFLAGS+= $(TOOL_CFLAGS)
LOCAL_LDFLAGS:= $(TOOL_LDFLAGS) -lstdc++ -lc

include $(BUILD_HOST_STATIC_LIBRARY)


# For the device
# =====================================================
#include $(CLEAR_VARS)
#
#LOCAL_SRC_FILES:= \
#	$(commonSources)
#
#LOCAL_MODULE:= libtinyxml
#
#include $(BUILD_SHARED_LIBRARY)