diff options
author | Carl Shapiro <cshapiro@google.com> | 2011-07-06 19:17:39 -0700 |
---|---|---|
committer | Carl Shapiro <cshapiro@google.com> | 2011-07-11 11:33:47 -0700 |
commit | 0e6d19703440a2c440c19308390a12330d13c86e (patch) | |
tree | d383b1b7ce74bbd5e2bc954e06556563f64a3e64 /build/Android.libart.mk | |
parent | 565f50731db360584d0080af7f14f0b7ca10371c (diff) | |
download | art-0e6d19703440a2c440c19308390a12330d13c86e.zip art-0e6d19703440a2c440c19308390a12330d13c86e.tar.gz art-0e6d19703440a2c440c19308390a12330d13c86e.tar.bz2 |
Relocate all of the included Makefiles into the build subdirectory.
Change-Id: I95dc51d72ff7076efac9f04aae098038c4464f4e
Diffstat (limited to 'build/Android.libart.mk')
-rw-r--r-- | build/Android.libart.mk | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/build/Android.libart.mk b/build/Android.libart.mk new file mode 100644 index 0000000..404f0c6 --- /dev/null +++ b/build/Android.libart.mk @@ -0,0 +1,36 @@ +# +# Copyright (C) 2011 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. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +include $(CLEAR_VARS) + +LOCAL_MODULE := libart +LOCAL_MODULE_TAGS := optional + +LIBART_TARGET_ARCH := $(TARGET_ARCH) +include $(build_path)/Android.common.mk +LOCAL_SRC_FILES := $(LIBART_LOCAL_SRC_FILES) + +include external/stlport/libstlport.mk + +LOCAL_STATIC_LIBRARIES := \ + libcutils \ + liblog \ + libz + +LOCAL_SHARED_LIBRARIES := \ + libstlport + +include $(BUILD_SHARED_LIBRARY) |