blob: 465c964339535445738d62f4c68618040c93dd67 [file] [log] [blame]
Elliott Hughesc3d30bf2011-01-07 16:24:47 -08001# -*- mode: makefile -*-
Dan Bornstein6ac43c22009-10-24 15:33:49 -07002# Copyright (C) 2009 The Android Open Source Project
The Android Open Source Projectadc854b2009-03-03 19:28:47 -08003#
Dan Bornstein6ac43c22009-10-24 15:33:49 -07004# 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.
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080015
Dan Bornstein6ac43c22009-10-24 15:33:49 -070016LOCAL_PATH := $(call my-dir)
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080017
Kenny Root58162772013-09-16 13:58:19 -070018#
19# Subprojects with separate makefiles
20#
21
Pete Gillin19c70e92017-10-18 12:43:47 +010022subdirs := benchmarks tzdata ojluni tools/upstream metrictests
Kenny Root58162772013-09-16 13:58:19 -070023subdir_makefiles := $(call all-named-subdir-makefiles,$(subdirs))
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080024
Dan Bornstein6ac43c22009-10-24 15:33:49 -070025#
Elliott Hughesc5cd6e82012-10-18 18:13:10 -070026# Disable test modules if LIBCORE_SKIP_TESTS environment variable is set.
Brian Carlstromf50f4482010-06-24 09:26:28 -070027#
28
29ifneq ($(LIBCORE_SKIP_TESTS),)
30$(info ********************************************************************************)
31$(info * libcore tests are skipped because environment variable LIBCORE_SKIP_TESTS=$(LIBCORE_SKIP_TESTS))
32$(info ********************************************************************************)
Brian Carlstromf50f4482010-06-24 09:26:28 -070033endif
Brian Carlstromd39b1d62011-03-06 23:15:39 -080034
Kenny Root58162772013-09-16 13:58:19 -070035include $(subdir_makefiles)