summaryrefslogtreecommitdiffstats
path: root/tools/apicheck
diff options
context:
space:
mode:
authorBen Dodson <bjdodson@google.com>2010-08-17 11:49:18 -0700
committerBen Dodson <bjdodson@google.com>2010-08-17 11:49:18 -0700
commit834cf50845895f81b24f78870c2b2d86e3492628 (patch)
tree542051bc9e9a09402fedf7ec0850d92d76cb7057 /tools/apicheck
parent5846ec74cc40e252d27441b86f2d85d1d225aa28 (diff)
downloadbuild-834cf50845895f81b24f78870c2b2d86e3492628.zip
build-834cf50845895f81b24f78870c2b2d86e3492628.tar.gz
build-834cf50845895f81b24f78870c2b2d86e3492628.tar.bz2
Fix for building apicheck tool
Change-Id: If0dafa8e45de6a872bf1cc47942335493e96383b
Diffstat (limited to 'tools/apicheck')
-rw-r--r--tools/apicheck/Android.mk23
1 files changed, 22 insertions, 1 deletions
diff --git a/tools/apicheck/Android.mk b/tools/apicheck/Android.mk
index 92f4627..24f697c 100644
--- a/tools/apicheck/Android.mk
+++ b/tools/apicheck/Android.mk
@@ -1,4 +1,4 @@
-# Copyright (C) 2008 The Android Open Source Project
+# Copyright (C) 2007-2008 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -14,4 +14,25 @@
LOCAL_PATH := $(call my-dir)
+# We use copy-file-to-new-target so that the installed
+# script file's timestamp is at least as new as the
+# .jar file it wraps.
+
+#TODO(dbort): add a template to do this stuff; share with jx
+
+# the hat script
+# ============================================================
+include $(CLEAR_VARS)
+LOCAL_IS_HOST_MODULE := true
+LOCAL_MODULE_CLASS := EXECUTABLES
+LOCAL_MODULE := apicheck
+
+include $(BUILD_SYSTEM)/base_rules.mk
+
+$(LOCAL_BUILT_MODULE): $(HOST_OUT_JAVA_LIBRARIES)/doclava$(COMMON_JAVA_PACKAGE_SUFFIX)
+$(LOCAL_BUILT_MODULE): $(LOCAL_PATH)/etc/apicheck | $(ACP)
+ @echo "Copy: $(PRIVATE_MODULE) ($@)"
+ $(copy-file-to-new-target)
+ $(hide) chmod 755 $@
+
# Apicheck is now part of Doclava -- See external/doclava.