1# Copyright 2007 The Android Open Source Project 2# 3# Copies files into the directory structure described by a manifest 4 5LOCAL_PATH:= $(call my-dir) 6include $(CLEAR_VARS) 7 8LOCAL_SRC_FILES := \ 9 aidl_language_l.l \ 10 aidl_language_y.y \ 11 aidl.cpp \ 12 aidl_language.cpp \ 13 options.cpp \ 14 search_path.cpp \ 15 AST.cpp \ 16 Type.cpp \ 17 generate_java.cpp 18 19LOCAL_CFLAGS := -g 20LOCAL_MODULE := aidl 21 22include $(BUILD_HOST_EXECUTABLE) 23 24 25