summaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk39
1 files changed, 0 insertions, 39 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index bf735c4..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2005 The Android Open Source Project
-#
-# Android.mk for TinyXml.
-#
-# Add -DTIXML_USE_STL to CFLAGS to use STL.
-#
-
-LOCAL_PATH := $(call my-dir)
-
-commonSources:= \
- tinyxml.cpp \
- tinyxmlparser.cpp \
- tinyxmlerror.cpp \
- tinystr.cpp
-
-commonFlags := \
- -Wno-implicit-fallthrough \
- -Wno-logical-op-parentheses \
- -Wno-missing-braces \
- -Wno-undefined-bool-conversion \
- -Werror
-
-
-# For the device
-# =====================================================
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES:= \
- $(commonSources)
-
-LOCAL_MODULE:= libtinyxml
-
-LOCAL_VENDOR_MODULE := true
-
-LOCAL_CFLAGS+= $(commonFlags)
-
-include $(BUILD_SHARED_LIBRARY)
-
-