Makefile revision 1.19
1# $NetBSD: Makefile,v 1.19 2012/02/24 14:02:55 joerg Exp $ 2 3.include <bsd.own.mk> 4 5TESTSDIR= ${TESTSBASE}/lib/libc/stdlib 6 7TESTS_C+= t_div 8TESTS_C+= t_getenv 9TESTS_C+= t_getenv_thread 10TESTS_C+= t_exit 11TESTS_C+= t_hsearch 12TESTS_C+= t_mi_vector_hash 13TESTS_C+= t_posix_memalign 14TESTS_C+= t_strtod 15TESTS_C+= t_strtol 16TESTS_C+= t_system 17 18TESTS_SH+= t_atexit 19TESTS_SH+= t_getopt 20 21MKMAN=no 22 23BINDIR= ${TESTSDIR} 24 25PROGS+= h_atexit 26PROGS+= h_getopt h_getopt_long 27 28COPTS.t_strtod.c+= -ffloat-store 29LDADD.t_strtod= -lm 30 31LDADD.t_getenv_thread= -lpthread 32 33.include <bsd.test.mk> 34