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