blob: 79e084c8f59311885968e2ec5e2474fce6ad8cbd [file] [log] [blame]
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001# Copyright (C) 2006 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
17subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, \
Aart Bik1a650522015-07-08 21:20:41 +000018 libdex \
Piotr Gurguladcf37c2010-09-02 19:15:30 -070019 dexgen \
Aart Bik1a650522015-07-08 21:20:41 +000020 dexdump \
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080021 dx \
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080022 tools \
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080023 ))
24
25include $(subdirs)
26
27
28.PHONY: dex dex-debug
29ifeq ($(DONT_INSTALL_DEX_FILES),true)
30dex:
31 @echo "Forcing a remake with DONT_INSTALL_DEX_FILES=false"
32 $(hide) $(MAKE) DONT_INSTALL_DEX_FILES=false
33else
34# DONT_INSTALL_DEX_FILES is already false, so a normal make takes care of it.
35dex: $(DEFAULT_GOAL)
36endif
37
38d :=
39ifneq ($(GENERATE_DEX_DEBUG),)
40d := debug
41endif
42ifneq ($(DONT_INSTALL_DEX_FILES),true)
43d := $(d)-install
44endif
45ifneq ($(d),debug-install)
46# generate the debug .dex files, with a copy in ./dalvik/DEBUG-FILES.
47# We need to rebuild the .dex files for the debug output to be generated.
48# The "touch -c $(DX)" is a hack that we know will force
49# a rebuild of the .dex files. If $(DX) doesn't exist yet,
50# we won't touch it (-c) and the normal build will create
51# the .dex files naturally.
52dex-debug:
53 @echo "Forcing an app rebuild with GENERATE_DEX_DEBUG=true"
54 @touch -c $(DX)
55 $(hide) $(MAKE) DONT_INSTALL_DEX_FILES=false GENERATE_DEX_DEBUG=true
56else
57# GENERATE_DEX_DEBUG and DONT_INSTALL_DEX_FILES are already set properly,
58# so a normal make takes care of it.
59dex-debug: $(DEFAULT_GOAL)
60endif