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