1 # $NetBSD: Makefile,v 1.1 2013/02/23 14:16:50 jmmv Exp $ 2 3 KYUA_LIBS= store utils 4 5 .include <bsd.init.mk> 6 7 .PATH: ${SRCDIR}/engine 8 .PATH: ${SRCDIR}/engine/drivers 9 10 LIB= engine 11 12 WARNS?= 3 13 14 SRCS= action.cpp \ 15 config.cpp \ 16 context.cpp \ 17 exceptions.cpp \ 18 filters.cpp \ 19 kyuafile.cpp \ 20 metadata.cpp \ 21 test_case.cpp \ 22 test_program.cpp \ 23 test_result.cpp \ 24 testers.cpp 25 26 # engine/drivers subdirectory. 27 SRCS+= debug_test.cpp \ 28 list_tests.cpp \ 29 run_tests.cpp \ 30 scan_action.cpp 31 32 .include <bsd.lib.mk> 33