Home | History | Annotate | Line # | Download | only in libc
Makefile revision 1.29
      1 # $NetBSD: Makefile,v 1.29 2011/01/12 02:58:40 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 TESTS_SH+=	t_protoent
     30 TESTS_SH+=	t_servent
     31 
     32 BINDIR=		${TESTSDIR}
     33 MKMAN=		no
     34 
     35 PROGS+=		h_atexit
     36 PROGS+=		h_nsd_recurse
     37 PROGS+=		h_protoent
     38 PROGS+=		h_servent
     39 
     40 LDADD.h_nsd_recurse+=	-lpthread
     41 LDADD.t_mktime+=	-lpthread
     42 
     43 .include <bsd.test.mk>
     44