blob: cc71aaca211f20be6a5678a26b5982aa168feb93 [file] [log] [blame]
Brian Carlstrom69b15fb2011-09-03 12:25:21 -07001#
2# Copyright (C) 2011 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17ART_HOST_EXECUTABLES :=
18ART_TARGET_EXECUTABLES :=
19
20# $(1): executable ("d" will be appended for debug version)
21# $(2): source
22# $(3): target or host
23# $(4): ndebug or debug
24define build-art-executable
Brian Carlstrom0796af02011-10-12 14:31:45 -070025 ifneq ($(3),target)
26 ifneq ($(3),host)
27 $$(error expected target or host for argument 3, received $(3))
28 endif
29 endif
30 ifneq ($(4),ndebug)
31 ifneq ($(4),debug)
32 $$(error expected ndebug or debug for argument 4, received $(4))
33 endif
34 endif
35
36 art_executable := $(1)
37 art_source := $(2)
38 art_target_or_host := $(3)
39 art_ndebug_or_debug := $(4)
40
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070041 include $(CLEAR_VARS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070042 ifeq ($$(art_target_or_host),target)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070043 include external/stlport/libstlport.mk
44 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070045
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070046 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070047 LOCAL_MODULE_TAGS := optional
Brian Carlstrom0796af02011-10-12 14:31:45 -070048 LOCAL_SRC_FILES := $$(art_source)
49 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
50 LOCAL_SHARED_LIBRARIES := libnativehelper
51
52 ifeq ($$(art_ndebug_or_debug),ndebug)
53 LOCAL_MODULE := $$(art_executable)
54 else #debug
55 LOCAL_MODULE := $$(art_executable)d
Elliott Hughes1d3f1142011-09-13 12:00:00 -070056 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070057
Brian Carlstrom89521892011-12-07 22:05:07 -080058 ifeq ($$(art_target_or_host),target)
Brian Carlstrom0796af02011-10-12 14:31:45 -070059 LOCAL_CFLAGS := $(ART_TARGET_CFLAGS)
60 ifeq ($$(art_ndebug_or_debug),debug)
Brian Carlstrom86927212011-09-15 11:31:11 -070061 LOCAL_CFLAGS += $(ART_TARGET_DEBUG_CFLAGS)
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070062 else
63 LOCAL_CFLAGS += $(ART_TARGET_NON_DEBUG_CFLAGS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070064 endif
65 else # host
66 LOCAL_CFLAGS := $(ART_HOST_CFLAGS)
67 ifeq ($$(art_ndebug_or_debug),debug)
Brian Carlstrom86927212011-09-15 11:31:11 -070068 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
Elliott Hughes3b6baaa2011-10-14 19:13:56 -070069 else
70 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
Brian Carlstrom86927212011-09-15 11:31:11 -070071 endif
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070072 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070073
74 ifeq ($$(art_ndebug_or_debug),ndebug)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070075 LOCAL_SHARED_LIBRARIES += libart
Brian Carlstrom0796af02011-10-12 14:31:45 -070076 else # debug
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070077 LOCAL_SHARED_LIBRARIES += libartd
Elliott Hughes06e3ad42012-02-07 14:51:57 -080078 ifeq ($$(art_target_or_host),target)
79 LOCAL_SHARED_LIBRARIES += libdynamic_annotations
80 else
81 LOCAL_SHARED_LIBRARIES += libdynamic_annotations-host
82 endif
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070083 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070084
85 ifeq ($$(art_target_or_host),target)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070086 LOCAL_SHARED_LIBRARIES += libstlport
87 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070088
89 ifeq ($$(art_target_or_host),target)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070090 include $(BUILD_EXECUTABLE)
Brian Carlstrom0796af02011-10-12 14:31:45 -070091 ART_TARGET_EXECUTABLES := $(ART_TARGET_EXECUTABLES) $(TARGET_OUT_EXECUTABLES)/$$(LOCAL_MODULE)
92 else # host
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070093 include $(BUILD_HOST_EXECUTABLE)
Brian Carlstrom0796af02011-10-12 14:31:45 -070094 ART_HOST_EXECUTABLES := $(ART_HOST_EXECUTABLES) $(HOST_OUT_EXECUTABLES)/$$(LOCAL_MODULE)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070095 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070096
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070097endef
98
Brian Carlstrom4b620ff2011-09-11 01:11:01 -070099ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
100 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),target,ndebug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700101 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),target,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700102 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),target,ndebug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700103endif
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700104ifeq ($(ART_BUILD_TARGET_DEBUG),true)
105 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),target,debug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700106 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),target,debug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700107 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),target,debug))
108endif
109ifeq ($(ART_BUILD_HOST_NDEBUG),true)
110 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),host,ndebug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700111 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),host,ndebug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700112 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),host,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700113endif
114ifeq ($(ART_BUILD_HOST_DEBUG),true)
115 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),host,debug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700116 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),host,debug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700117 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),host,debug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700118endif