blob: 2ad0728c221821a311081a8589109af7bc9a6977 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001# Copyright 2007 The Android Open Source Project
2#
3# Copies files into the directory structure described by a manifest
4
Joe Onorato74905e52010-06-10 18:34:55 -07005# This tool is prebuilt if we're doing an app-only build.
6ifeq ($(TARGET_BUILD_APPS),)
7
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08008LOCAL_PATH:= $(call my-dir)
9include $(CLEAR_VARS)
10
11LOCAL_SRC_FILES := \
12 aidl_language_l.l \
13 aidl_language_y.y \
14 aidl.cpp \
15 aidl_language.cpp \
16 options.cpp \
17 search_path.cpp \
18 AST.cpp \
19 Type.cpp \
20 generate_java.cpp
21
22LOCAL_CFLAGS := -g
23LOCAL_MODULE := aidl
24
25include $(BUILD_HOST_EXECUTABLE)
26
Joe Onorato74905e52010-06-10 18:34:55 -070027endif # TARGET_BUILD_APPS