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