1 # Get the current local path as the first operation 2 LOCAL_PATH := $(call get_makefile_dir) 3 4 # Clear out the variables used in the local makefiles 5 include $(MK)/clear.mk 6 7 TARGET := unit_test 8 9 XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS) 10 11 SRCDIR := ../../src 12 INCSRCDIR := ../../src 13 14 SRCS := 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 21 HDRS := 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 31 include $(MK)/library.mk 32 33 34 35