forked from loosethisskin/android_external_clang
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAndroid.mk
More file actions
35 lines (30 loc) · 700 Bytes
/
Android.mk
File metadata and controls
35 lines (30 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
LOCAL_PATH := $(call my-dir)
CLANG_ROOT_PATH := $(LOCAL_PATH)
include $(CLEAR_VARS)
subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, \
lib/Analysis \
lib/AST \
lib/ARCMigrate \
lib/Basic \
lib/CodeGen \
lib/Driver \
lib/Edit \
lib/Frontend \
lib/FrontendTool \
lib/Headers \
lib/Lex \
lib/Parse \
lib/Rewrite/Core \
lib/Rewrite/Frontend \
lib/Sema \
lib/Serialization \
lib/StaticAnalyzer/Checkers \
lib/StaticAnalyzer/Core \
lib/StaticAnalyzer/Frontend \
tools/driver \
utils/TableGen \
))
LOCAL_CFLAGS := $(call-cc-option,-Qunused-arguments)
include $(LOCAL_PATH)/clang.mk
include $(LOCAL_PATH)/host_shared_clang.mk
include $(subdirs)