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