Fix build rule dependency.

RSCCOptions.inc should depend on $(CLANG_TBLGEN) instead
of $(TBLGEN) since clang related code has been splitted
from (llvm-) tblgen to clang-tblgen.

Change-Id: I84bd9ada3c8dea4fcb90762cf1a99b384df5840b
diff --git a/Android.mk b/Android.mk
index e2d7bc8..20fe266 100644
--- a/Android.mk
+++ b/Android.mk
@@ -241,7 +241,7 @@
 # For build RSCCOptions.inc from RSCCOptions.td
 intermediates := $(call local-intermediates-dir)
 LOCAL_GENERATED_SOURCES += $(intermediates)/RSCCOptions.inc
-$(intermediates)/RSCCOptions.inc: $(LOCAL_PATH)/RSCCOptions.td $(CLANG_ROOT_PATH)/include/clang/Driver/OptParser.td $(TBLGEN)
+$(intermediates)/RSCCOptions.inc: $(LOCAL_PATH)/RSCCOptions.td $(CLANG_ROOT_PATH)/include/clang/Driver/OptParser.td $(CLANG_TBLGEN)
 	@echo "Building Renderscript compiler (llvm-rs-cc) Option tables with tblgen"
 	$(call transform-host-clang-td-to-out,opt-parser-defs)