10 lines
199 B
Makefile
10 lines
199 B
Makefile
# A simple test for the minimal standard C++ library
|
|
#
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := test-libstl
|
|
LOCAL_SRC_FILES := test-libstl.cpp
|
|
include $(BUILD_EXECUTABLE)
|