aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'edify/Android.mk')
-rw-r--r--edify/Android.mk53
1 files changed, 0 insertions, 53 deletions
diff --git a/edify/Android.mk b/edify/Android.mk
deleted file mode 100644
index 527698e6..00000000
--- a/edify/Android.mk
+++ /dev/null
@@ -1,53 +0,0 @@
1# Copyright 2009 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH := $(call my-dir)
16
17edify_src_files := \
18 lexer.ll \
19 parser.yy \
20 expr.cpp
21
22#
23# Build the device-side library (static library)
24#
25include $(CLEAR_VARS)
26
27LOCAL_SRC_FILES := $(edify_src_files)
28
29LOCAL_CFLAGS := -Wall -Werror
30LOCAL_CPPFLAGS := -Wno-unused-parameter
31LOCAL_CPPFLAGS += -Wno-deprecated-register
32LOCAL_MODULE := libedify
33LOCAL_STATIC_LIBRARIES += \
34 libotautil \
35 libbase
36
37include $(BUILD_STATIC_LIBRARY)
38
39#
40# Build the host-side library (static library)
41#
42include $(CLEAR_VARS)
43
44LOCAL_SRC_FILES := $(edify_src_files)
45
46LOCAL_CFLAGS := -Wall -Werror
47LOCAL_CPPFLAGS := -Wno-unused-parameter
48LOCAL_CPPFLAGS += -Wno-deprecated-register
49LOCAL_MODULE := libedify
50LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
51LOCAL_STATIC_LIBRARIES += libbase
52
53include $(BUILD_HOST_STATIC_LIBRARY)