aboutsummaryrefslogtreecommitdiffstats
path: root/anttasks/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'anttasks/Android.mk')
-rw-r--r--anttasks/Android.mk18
1 files changed, 16 insertions, 2 deletions
diff --git a/anttasks/Android.mk b/anttasks/Android.mk
index 15ee903..e75a7cd 100644
--- a/anttasks/Android.mk
+++ b/anttasks/Android.mk
@@ -13,5 +13,19 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
-ANTTASKS_LOCAL_DIR := $(call my-dir)
-include $(ANTTASKS_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 := \
+ sdklib \
+ ant
+
+LOCAL_MODULE := anttasks
+
+include $(BUILD_HOST_JAVA_LIBRARY)
+