From 834cf50845895f81b24f78870c2b2d86e3492628 Mon Sep 17 00:00:00 2001 From: Ben Dodson Date: Tue, 17 Aug 2010 11:49:18 -0700 Subject: [PATCH] Fix for building apicheck tool Change-Id: If0dafa8e45de6a872bf1cc47942335493e96383b --- tools/apicheck/Android.mk | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/tools/apicheck/Android.mk b/tools/apicheck/Android.mk index 92f4627514..24f697c524 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.