summaryrefslogtreecommitdiffstats
path: root/core/main.mk
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2015-05-08 13:27:25 -0700
committerYing Wang <wangying@google.com>2015-05-08 13:27:25 -0700
commit90598cb70c3a6e65223f02c4104e823024caf693 (patch)
tree2b87ed878b26f8589b880255838914dd5e663a2f /core/main.mk
parentd508778493323e5a992110e6990ad120cb9a65c0 (diff)
downloadbuild-90598cb70c3a6e65223f02c4104e823024caf693.zip
build-90598cb70c3a6e65223f02c4104e823024caf693.tar.gz
build-90598cb70c3a6e65223f02c4104e823024caf693.tar.bz2
Cleaned the outdated incrementaljavac.
Nobody is using this feature and now we switched to jack. Change-Id: I749b486eb347cbf3ee7b107565fc800eeb238c44
Diffstat (limited to 'core/main.mk')
-rw-r--r--core/main.mk18
1 files changed, 1 insertions, 17 deletions
diff --git a/core/main.mk b/core/main.mk
index 3bf9cae..e04c4c7 100644
--- a/core/main.mk
+++ b/core/main.mk
@@ -234,23 +234,7 @@ endif
# These are the modifier targets that don't do anything themselves, but
# change the behavior of the build.
# (must be defined before including definitions.make)
-INTERNAL_MODIFIER_TARGETS := showcommands all incrementaljavac
-
-.PHONY: incrementaljavac
-incrementaljavac: ;
-
-# WARNING:
-# ENABLE_INCREMENTALJAVAC should NOT be enabled by default, because change of
-# a Java source file won't trigger rebuild of its dependent Java files.
-# You can only enable it by adding "incrementaljavac" to your make command line.
-# You are responsible for the correctness of the incremental build.
-# This may decrease incremental build time dramatically for large Java libraries,
-# such as core.jar, framework.jar, etc.
-ENABLE_INCREMENTALJAVAC :=
-ifneq (,$(filter incrementaljavac, $(MAKECMDGOALS)))
-ENABLE_INCREMENTALJAVAC := true
-MAKECMDGOALS := $(filter-out incrementaljavac, $(MAKECMDGOALS))
-endif
+INTERNAL_MODIFIER_TARGETS := showcommands all
# EMMA_INSTRUMENT_STATIC merges the static emma library to each emma-enabled module.
ifeq (true,$(EMMA_INSTRUMENT_STATIC))