Android.mk revision 9b6ec9471cebdbd68639492825956b96f807e382
1# Copyright (C) 2010 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH := $(call my-dir)
16
17# build smali jar
18# ============================================================
19
20include $(CLEAR_VARS)
21
22LOCAL_MODULE := smali
23
24LOCAL_MODULE_TAGS := optional
25
26#LOCAL_MODULE_CLASS and LOCAL_IS_HOST_MODULE must be defined before calling $(local-intermediates-dir)
27LOCAL_MODULE_CLASS := JAVA_LIBRARIES
28LOCAL_IS_HOST_MODULE := true
29
30intermediates := $(call local-intermediates-dir,COMMON)
31
32GEN := $(addprefix $(intermediates)/, \
33			smaliLexer.java \
34			smaliParser.java \
35			smaliTreeWalker.java \
36        )
37
38ANTLR_JAR = $(call java-lib-deps,antlr,true)
39
40$(GEN): $(ANTLR_JAR)
41$(GEN): PRIVATE_PATH := $(LOCAL_PATH)
42$(GEN): PRIVATE_CUSTOM_TOOL = java -jar $(ANTLR_JAR) -fo $(dir $@) $<
43$(GEN): $(intermediates)/%.java :  $(LOCAL_PATH)/src/main/antlr3/org/jf/smali/%.g
44	$(transform-generated-source)
45
46LOCAL_GENERATED_SOURCES += $(GEN)
47
48LOCAL_SRC_FILES := \
49	$(call all-java-files-under, src/main/java) \
50	$(call all-java-files-under, ../dexlib/src/main/java) \
51	$(call all-java-files-under, ../util/src/main/java)
52
53LOCAL_JAR_MANIFEST := manifest.txt
54
55LOCAL_STATIC_JAVA_LIBRARIES := \
56	antlr-runtime \
57	commons-cli-1.2
58
59#extract the current version from the pom file
60SMALI_VERSION := $(shell xsltproc $(LOCAL_PATH)/../extract-property.xslt $(LOCAL_PATH)/../pom.xml)
61
62#create a new smali.properties file using the correct version
63$(intermediates)/resources/smali.properties:
64	$(hide) mkdir -p $(dir $@)
65	$(hide) echo "application.version=$(SMALI_VERSION)" > $@
66
67LOCAL_JAVA_RESOURCE_FILES := $(intermediates)/resources/smali.properties
68
69include $(BUILD_HOST_JAVA_LIBRARY)
70
71
72
73# copy smali script
74# ============================================================
75
76include $(CLEAR_VARS)
77LOCAL_IS_HOST_MODULE := true
78LOCAL_MODULE_CLASS := EXECUTABLES
79LOCAL_MODULE_TAGS := optional
80LOCAL_MODULE := smali
81
82include $(BUILD_SYSTEM)/base_rules.mk
83
84$(LOCAL_BUILT_MODULE): $(HOST_OUT_JAVA_LIBRARIES)/smali.jar
85$(LOCAL_BUILT_MODULE): $(LOCAL_PATH)/../scripts/smali | $(ACP)
86	@echo "Copy: $(PRIVATE_MODULE) ($@)"
87	$(copy-file-to-new-target)
88	$(hide) chmod 755 $@