diff options
author | Colin Cross <ccross@android.com> | 2015-04-07 16:50:10 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2015-04-08 15:17:45 -0700 |
commit | 581c18998830a44c20b8932935a2f32442bd8e80 (patch) | |
tree | df97714ae7d8fbb63ab4f36cf96ed3f7cdad58bd /androidmk | |
parent | 65bf4f231c9407a0f53c7c2b9237d0b219032231 (diff) | |
download | build_soong-581c18998830a44c20b8932935a2f32442bd8e80.tar.gz build_soong-581c18998830a44c20b8932935a2f32442bd8e80.tar.bz2 build_soong-581c18998830a44c20b8932935a2f32442bd8e80.zip |
Add yacc and lex support
Add support for yacc (.y or .yy) and lex (.l or .ll) files. Also
tweak locations of .o files for normal and generated sources to
makes sure they don't collide.
Change-Id: I03172cddbdc022525bf392a81d72050406b8cdb3
Diffstat (limited to 'androidmk')
-rw-r--r-- | androidmk/cmd/androidmk/android.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/androidmk/cmd/androidmk/android.go b/androidmk/cmd/androidmk/android.go index 3009d464..028396af 100644 --- a/androidmk/cmd/androidmk/android.go +++ b/androidmk/cmd/androidmk/android.go @@ -42,6 +42,7 @@ var listProperties = map[string]string{ "LOCAL_MODULE_TAGS": "tags", "LOCAL_LDLIBS": "host_ldlibs", "LOCAL_CLANG_CFLAGS": "clang_cflags", + "LOCAL_YACCFLAGS": "yaccflags", "LOCAL_JAVA_RESOURCE_DIRS": "resource_dirs", "LOCAL_JAVACFLAGS": "javacflags", |