1 # 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 15 LOCAL_PATH := $(call my-dir) 16 17 subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, \ 18 dx \ 19 )) 20 21 include $(subdirs) 22 23 24 .PHONY: dex dex-debug 25 ifeq ($(DONT_INSTALL_DEX_FILES),true) 26 dex: 27 @echo "Forcing a remake with DONT_INSTALL_DEX_FILES=false" 28 $(hide) $(MAKE) DONT_INSTALL_DEX_FILES=false 29 else 30 # DONT_INSTALL_DEX_FILES is already false, so a normal make takes care of it. 31 dex: $(DEFAULT_GOAL) 32 endif 33 34 d := 35 ifneq ($(GENERATE_DEX_DEBUG),) 36 d := debug 37 endif 38 ifneq ($(DONT_INSTALL_DEX_FILES),true) 39 d := $(d)-install 40 endif 41 ifneq ($(d),debug-install) 42 # generate the debug .dex files, with a copy in ./dalvik/DEBUG-FILES. 43 # We need to rebuild the .dex files for the debug output to be generated. 44 # The "touch -c $(DX)" is a hack that we know will force 45 # a rebuild of the .dex files. If $(DX) doesn't exist yet, 46 # we won't touch it (-c) and the normal build will create 47 # the .dex files naturally. 48 dex-debug: 49 @echo "Forcing an app rebuild with GENERATE_DEX_DEBUG=true" 50 @touch -c $(DX) 51 $(hide) $(MAKE) DONT_INSTALL_DEX_FILES=false GENERATE_DEX_DEBUG=true 52 else 53 # GENERATE_DEX_DEBUG and DONT_INSTALL_DEX_FILES are already set properly, 54 # so a normal make takes care of it. 55 dex-debug: $(DEFAULT_GOAL) 56 endif 57