Home | History | Annotate | Line # | Download | only in stdlib
Makefile revision 1.10
      1 # $NetBSD: Makefile,v 1.10 2011/04/05 06:15:30 jruoho Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 TESTSDIR=	${TESTSBASE}/lib/libc/stdlib
      6 
      7 TESTS_C+=	t_div
      8 TESTS_C+=	t_environment
      9 TESTS_C+=	t_environment_pth
     10 TESTS_C+=	t_hsearch
     11 TESTS_C+=	t_mi_vector_hash
     12 TESTS_C+=	t_posix_memalign
     13 TESTS_C+=	t_strtod
     14 TESTS_C+=	t_strtox
     15 
     16 TESTS_SH+=	t_atexit
     17 TESTS_SH+=	t_getopt
     18 
     19 MKMAN=no
     20 
     21 BINDIR=		${TESTSDIR}
     22 
     23 PROGS+=		h_atexit
     24 PROGS+=		h_getopt h_getopt_long
     25 
     26 LDADD.t_environment_pth=	-pthread
     27 
     28 .include <bsd.test.mk>
     29