aboutsummaryrefslogtreecommitdiff
path: root/Src/nde/Android.mk
diff options
context:
space:
mode:
authorJef <jef@targetspot.com>2024-09-24 08:54:57 -0400
committerJef <jef@targetspot.com>2024-09-24 08:54:57 -0400
commit20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch)
tree12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/nde/Android.mk
parent537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff)
downloadwinamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz
Initial community commit
Diffstat (limited to 'Src/nde/Android.mk')
-rw-r--r--Src/nde/Android.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/Src/nde/Android.mk b/Src/nde/Android.mk
new file mode 100644
index 00000000..7a394aef
--- /dev/null
+++ b/Src/nde/Android.mk
@@ -0,0 +1,15 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+LOCAL_MODULE := nde
+LOCAL_CFLAGS += -D__ANDROID__
+LOCAL_C_INCLUDES := $(LOCAL_PATH)/..
+# make base stuff
+LOCAL_SRC_FILES := Crc.cpp Database.cpp DBUtils.cpp Field.cpp Filter.cpp Index.cpp Int64Field.cpp Int128Field.cpp LinkedList.cpp NDEString.cpp
+# make platform-specific field classes
+LOCAL_SRC_FILES += android/Binary32Field.cpp android/BinaryField.cpp android/ColumnField.cpp android/FilenameField.cpp android/IndexField.cpp
+LOCAL_SRC_FILES += android/IntegerField.cpp android/StringField.cpp
+# make rest of platform-specific classes
+LOCAL_SRC_FILES += android/IndexRecord.cpp android/nde_c.cpp android/nde_init.cpp android/Query.cpp android/Record.cpp android/Scanner.cpp android/Table.cpp android/Vfs.cpp
+
+include $(BUILD_SHARED_LIBRARY)