blob: aa1b7923828b7b423c87405f07533618ae0011ca (
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
33
34
35
|
# $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
.if defined(__MINIX)
NOCLANGERROR= yes
.endif # defined(__MINIX)
.include <bsd.lib.mk>
|