diff options
Diffstat (limited to 'archquery/Android.mk')
-rw-r--r-- | archquery/Android.mk | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/archquery/Android.mk b/archquery/Android.mk index 53cad46..8936178 100644 --- a/archquery/Android.mk +++ b/archquery/Android.mk @@ -13,5 +13,16 @@ # See the License for the specific language governing permissions and # limitations under the License. # -ARCHQUERY_LOCAL_DIR := $(call my-dir) -include $(ARCHQUERY_LOCAL_DIR)/src/Android.mk +LOCAL_PATH := $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := $(call all-java-files-under, src) +LOCAL_JAVA_RESOURCE_DIRS := src + +LOCAL_JAR_MANIFEST := etc/manifest.txt + +LOCAL_JAVA_LIBRARIES := \ + +LOCAL_MODULE := archquery + +include $(BUILD_HOST_JAVA_LIBRARY) |