blob: 616c1c2f60b6eda96a66fdec13d1e2ea904aed07 [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
58 ifeq ($(art_target_or_host),target)
59 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
78 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070079
80 ifeq ($$(art_target_or_host),target)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070081 LOCAL_SHARED_LIBRARIES += libstlport
82 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070083
84 ifeq ($$(art_target_or_host),target)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070085 include $(BUILD_EXECUTABLE)
Brian Carlstrom0796af02011-10-12 14:31:45 -070086 ART_TARGET_EXECUTABLES := $(ART_TARGET_EXECUTABLES) $(TARGET_OUT_EXECUTABLES)/$$(LOCAL_MODULE)
87 else # host
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070088 include $(BUILD_HOST_EXECUTABLE)
Brian Carlstrom0796af02011-10-12 14:31:45 -070089 ART_HOST_EXECUTABLES := $(ART_HOST_EXECUTABLES) $(HOST_OUT_EXECUTABLES)/$$(LOCAL_MODULE)
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070090 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070091
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070092endef
93
Brian Carlstrom4b620ff2011-09-11 01:11:01 -070094ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
95 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),target,ndebug))
Brian Carlstrom78128a62011-09-15 17:21:19 -070096 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),target,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -070097 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),target,ndebug))
Brian Carlstromb7bbba42011-10-13 14:58:47 -070098 $(eval $(call build-art-executable,oatopt,$(OATOPT_SRC_FILES),target,ndebug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070099endif
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700100ifeq ($(ART_BUILD_TARGET_DEBUG),true)
101 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),target,debug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700102 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),target,debug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700103 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),target,debug))
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700104 $(eval $(call build-art-executable,oatopt,$(OATOPT_SRC_FILES),target,debug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700105endif
106ifeq ($(ART_BUILD_HOST_NDEBUG),true)
107 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),host,ndebug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700108 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),host,ndebug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700109 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),host,ndebug))
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700110 $(eval $(call build-art-executable,oatopt,$(OATOPT_SRC_FILES),host,ndebug))
Brian Carlstrom4b620ff2011-09-11 01:11:01 -0700111endif
112ifeq ($(ART_BUILD_HOST_DEBUG),true)
113 $(eval $(call build-art-executable,dex2oat,$(DEX2OAT_SRC_FILES),host,debug))
Brian Carlstrom78128a62011-09-15 17:21:19 -0700114 $(eval $(call build-art-executable,oatdump,$(OATDUMP_SRC_FILES),host,debug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700115 $(eval $(call build-art-executable,oatexec,$(OATEXEC_SRC_FILES),host,debug))
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700116 $(eval $(call build-art-executable,oatopt,$(OATOPT_SRC_FILES),host,debug))
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700117endif
118