1 LOCAL_PATH := $(call my-dir) 2 3 include $(CLEAR_VARS) 4 5 # embUnit test framework source files 6 LOCAL_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 17 LOCAL_C_INCLUDES := \ 18 $(LOCAL_PATH)/inc 19 20 LOCAL_MODULE_TAGS := tests 21 22 LOCAL_MODULE := libembunit 23 24 include $(BUILD_SHARED_LIBRARY) 25