summaryrefslogtreecommitdiffstats
path: root/tools/atree/Android.mk
blob: d895810f3b0572d4cb8436fa97286f92f2101375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2007 The Android Open Source Project
#
# Copies files into the directory structure described by a manifest

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES := \
	atree.cpp \
	files.cpp \
	fs.cpp

LOCAL_STATIC_LIBRARIES := \
	libhost
LOCAL_C_INCLUDES := build/libs/host/include

LOCAL_MODULE := atree

include $(BUILD_HOST_EXECUTABLE)