16 lines
357 B
Makefile
16 lines
357 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_MODULE := droiddriver
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_SDK_VERSION := 19
|
|
|
|
LOCAL_JAVACFLAGS += -Xlint:deprecation -Xlint:unchecked
|
|
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|