blob: 0b9f473f0fc7135fba603c98b709ade55868f80b (
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 2009/02/13 05:19:51 jmmv Exp $
SUBDIR= support
NOMAN= # defined
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/util/config
TESTS_SH= t_config
CLEANFILES+= t_config.sh
t_config.sh: t_config.awk t_config.in
${TOOL_AWK} -f ${.CURDIR}/t_config.awk ${.CURDIR}/t_config.in >t_config.sh.tmp
mv t_config.sh.tmp t_config.sh
FILESDIR= ${TESTSDIR}
FILES= d_deffs_redef
FILES+= d_loop
FILES+= d_loop2
FILES+= d_no_pseudo
FILES+= d_postponed_orphan
FILES+= d_pseudo_parent
FILES+= d_shadow_instance
FILES+= support/arch/regress/conf/Makefile.regress
FILES+= support/arch/regress/conf/files.regress
FILES+= support/arch/regress/conf/std.regress
FILES+= support/conf/files
.include <bsd.test.mk>
.include <bsd.subdir.mk>
|