The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | # Copyright 2007 The Android Open Source Project |
| 2 | # |
| 3 | # Copies files into the directory structure described by a manifest |
| 4 | |
| 5 | LOCAL_PATH:= $(call my-dir) |
| 6 | include $(CLEAR_VARS) |
| 7 | |
| 8 | LOCAL_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 | |
| 19 | LOCAL_CFLAGS := -g |
| 20 | LOCAL_MODULE := aidl |
| 21 | |
| 22 | include $(BUILD_HOST_EXECUTABLE) |
| 23 | |
| 24 | |