1LOCAL_PATH := $(call my-dir) 2 3include $(CLEAR_VARS) 4 5# embUnit test framework source files 6LOCAL_SRC_FILES := \ 7 src/AssertImpl.c \ 8 src/RepeatedTest.c \ 9 src/stdImpl.c \ 10 src/TestCaller.c \ 11 src/TestCase.c \ 12 src/TestResult.c \ 13 src/TestRunner.c \ 14 src/TestSuite.c 15 16# Header files path 17LOCAL_C_INCLUDES := \ 18 $(LOCAL_PATH)/inc 19 20LOCAL_MODULE_TAGS := tests 21 22LOCAL_MODULE := libembunit 23 24include $(BUILD_SHARED_LIBRARY) 25