Home | History | Annotate | Download | only in jni
      1 # See README to understand what this project does.
      2 LOCAL_PATH := $(call my-dir)
      3 
      4 include $(CLEAR_VARS)
      5 LOCAL_MODULE := build_stlport_static
      6 LOCAL_SRC_FILES := build_stlport.cpp
      7 LOCAL_STATIC_LIBRARIES := stlport_static
      8 include $(BUILD_EXECUTABLE)
      9 
     10 include $(CLEAR_VARS)
     11 LOCAL_MODULE := build_stlport_shared
     12 LOCAL_SRC_FILES := build_stlport.cpp
     13 LOCAL_SHARED_LIBRARIES := stlport_shared
     14 include $(BUILD_EXECUTABLE)
     15 
     16 $(call import-module,cxx-stl/stlport)
     17