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