Home | History | Annotate | Line # | Download | only in libc
Makefile revision 1.30
      1 # $NetBSD: Makefile,v 1.30 2011/01/12 17:32:27 pgoyette Exp $
      2 
      3 .include <bsd.own.mk>
      4 .include <bsd.sys.mk>
      5 
      6 TESTS_SUBDIRS+=	db gen hash ieeefp net regex rpc setjmp stdlib
      7 TESTS_SUBDIRS+=	stdio string sys ttyio
      8 
      9 .if ${HAS_SSP} == "yes"
     10 TESTS_SUBDIRS+=	ssp
     11 .endif
     12 
     13 TESTSDIR=	${TESTSBASE}/lib/libc
     14 
     15 TESTS_C+=	t_cerror
     16 TESTS_C+=	t_clone
     17 TESTS_C+=	t_context
     18 TESTS_C+=	t_convfp
     19 TESTS_C+=	t_gdtoa
     20 TESTS_C+=	t_hsearch
     21 TESTS_C+=	t_inet
     22 TESTS_C+=	t_mktime
     23 TESTS_C+=	t_ptm
     24 TESTS_C+=	t_randomid
     25 TESTS_C+=	t_strptime
     26 
     27 TESTS_SH+=	t_atexit
     28 TESTS_SH+=	t_nsdispatch
     29 
     30 BINDIR=		${TESTSDIR}
     31 MKMAN=		no
     32 
     33 PROGS+=		h_atexit
     34 PROGS+=		h_nsd_recurse
     35 
     36 LDADD.h_nsd_recurse+=	-lpthread
     37 LDADD.t_mktime+=	-lpthread
     38 
     39 .include <bsd.test.mk>
     40