Home | History | Annotate | Download | only in atree
      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 	atree.cpp \
     10 	files.cpp \
     11 	fs.cpp
     12 
     13 LOCAL_STATIC_LIBRARIES := \
     14 	libhost
     15 LOCAL_C_INCLUDES := build/libs/host/include
     16 
     17 LOCAL_MODULE := atree
     18 
     19 include $(BUILD_HOST_EXECUTABLE)
     20 
     21