1# Get the current local path as the first operation 2LOCAL_PATH := $(call get_makefile_dir) 3 4# Clear out the variables used in the local makefiles 5include $(MK)/clear.mk 6 7TARGET := unit_test 8 9XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 10 11SRCDIR := ../../src 12INCSRCDIR := ../../src 13 14SRCS := test_case.cpp \ 15 test_problem.cpp \ 16 test_result.cpp \ 17 text_test_interpreter.cpp \ 18 unit_test_main.cpp \ 19 unit_test_args.cpp 20 21HDRS := stringable.h \ 22 test_case.h \ 23 test_problem.h \ 24 test_result.h \ 25 text_test_interpreter.h \ 26 unit_test_common.h \ 27 unit_test_local_string.h \ 28 unit_test_args.h \ 29 unit_test_vector.h 30 31include $(MK)/library.mk 32 33 34 35