blob: bf4686731582d7232504400703ec20570ce932b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.50 2020/03/08 22:08:46 mgorny Exp $
.include "Makefile.inc"
.include <bsd.own.mk>
SUBDIR+= tls_dso .WAIT sync
TESTS_SUBDIRS+= atomic
TESTS_SUBDIRS+= c063 db gen hash inet locale misc net nls regex rpc setjmp
TESTS_SUBDIRS+= stdlib stdio string sys termios time tls ttyio
.if ${HAVE_SSP} == "yes"
TESTS_SUBDIRS+= ssp
.endif
TESTSDIR= ${TESTSBASE}/lib/libc
TESTS_C+= t_convfp
TESTS_C+= t_gdtoa
TESTS_C+= t_cdb
.include <bsd.test.mk>
|