1LOCAL_PATH := $(call my-dir) 2CLANG_ROOT_PATH := $(LOCAL_PATH) 3CLANG_ENABLE_ASSERTION := false 4 5include $(CLEAR_VARS) 6 7subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, \ 8 lib/Analysis \ 9 lib/AST \ 10 lib/ASTMatchers \ 11 lib/ARCMigrate \ 12 lib/Basic \ 13 lib/CodeGen \ 14 lib/Driver \ 15 lib/Edit \ 16 lib/Format \ 17 lib/Frontend \ 18 lib/Frontend/Rewrite \ 19 lib/FrontendTool \ 20 lib/Headers \ 21 lib/Index \ 22 lib/Lex \ 23 lib/Parse \ 24 lib/Rewrite \ 25 lib/Sema \ 26 lib/Serialization \ 27 lib/StaticAnalyzer/Checkers \ 28 lib/StaticAnalyzer/Core \ 29 lib/StaticAnalyzer/Frontend \ 30 lib/Tooling \ 31 tools/driver \ 32 tools/libclang \ 33 utils/TableGen \ 34 )) 35 36include $(LOCAL_PATH)/clang.mk 37include $(LOCAL_PATH)/shared_clang.mk 38 39include $(subdirs) 40