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