diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-04-16 19:21:14 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-04-16 19:21:14 +0200 |
commit | 3e4d8f433239c40311037616b1b8833a06651ae0 (patch) | |
tree | 98ab7fce0d011d34677b0beb762d389cb5c39199 /jni/prebuilt.mk |
Initial import
Diffstat (limited to 'jni/prebuilt.mk')
-rw-r--r-- | jni/prebuilt.mk | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/jni/prebuilt.mk b/jni/prebuilt.mk new file mode 100644 index 00000000..51bf1003 --- /dev/null +++ b/jni/prebuilt.mk @@ -0,0 +1,27 @@ +# Build curl
+
+include $(CLEAR_VARS)
+LOCAL_MODULE := curl
+LOCAL_SRC_FILES := prebuilt/libcurl.a
+LOCAL_PATH = $(CURRENT_DIR)
+
+include $(PREBUILT_STATIC_LIBRARY)
+
+# SIGC
+
+include $(CLEAR_VARS)
+LOCAL_MODULE := sigc
+LOCAL_SRC_FILES := prebuilt/libsigc.a
+LOCAL_PATH = $(CURRENT_DIR)
+
+include $(PREBUILT_STATIC_LIBRARY)
+
+include $(CLEAR_VARS)
+# Torrent library
+LOCAL_MODULE := rtorrent
+LOCAL_SRC_FILES := prebuilt/librtorrent.a
+LOCAL_PATH = $(CURRENT_DIR)
+
+LOCAL_STATIC_LIBRARIES := sigc
+
+include $(PREBUILT_STATIC_LIBRARY)
|