Makefile revision 1.13
1# $NetBSD: Makefile,v 1.13 2010/12/31 04:08:33 pgoyette Exp $
2
3.include <bsd.own.mk>
4.include <bsd.sys.mk>
5
6TESTS_SUBDIRS+=	gen hash setjmp stdlib stdio string
7
8.if ${HAS_SSP} == "yes"
9TESTS_SUBDIRS+=	ssp
10.endif
11
12.if (${MACHINE_ARCH} != "vax" && ${MACHINE_ARCH} != "m68000")
13SUBDIR+= ieeefp
14.endif
15
16TESTSDIR=	${TESTSBASE}/lib/libc
17
18TESTS_C+=	t_convfp
19TESTS_C+=	t_gdtoa
20TESTS_C+=	t_randomid
21
22.include <bsd.test.mk>
23