41 lines
724 B
Makefile
41 lines
724 B
Makefile
# Copyright 2009 The Android Open Source Project
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
edify_src_files := \
|
|
lexer.l \
|
|
parser.y \
|
|
expr.cpp
|
|
|
|
#
|
|
# Build the host-side command line tool
|
|
#
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
$(edify_src_files) \
|
|
main.cpp
|
|
|
|
LOCAL_CPPFLAGS := -g -O0
|
|
LOCAL_MODULE := edify
|
|
LOCAL_YACCFLAGS := -v
|
|
LOCAL_CPPFLAGS += -Wno-unused-parameter
|
|
LOCAL_CPPFLAGS += -Wno-deprecated-register
|
|
LOCAL_CLANG := true
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|
|
|
|
#
|
|
# Build the device-side library
|
|
#
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := $(edify_src_files)
|
|
|
|
LOCAL_CPPFLAGS := -Wno-unused-parameter
|
|
LOCAL_CPPFLAGS += -Wno-deprecated-register
|
|
LOCAL_MODULE := libedify
|
|
LOCAL_CLANG := true
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|