1 # $NetBSD: Makefile,v 1.12 2014/10/15 21:55:34 justin Exp $ 2 3 .include <bsd.own.mk> 4 5 TESTSDIR= ${TESTSBASE}/lib/libc/stdio 6 7 TESTS_C+= t_clearerr 8 TESTS_C+= t_fflush 9 TESTS_C+= t_fmemopen 10 TESTS_C+= t_fopen 11 TESTS_C+= t_open_memstream 12 TESTS_C+= t_fputc 13 TESTS_C+= t_mktemp 14 TESTS_C+= t_popen 15 TESTS_C+= t_printf 16 TESTS_C+= t_scanf 17 COPTS.t_printf.c += -Wno-format-nonliteral 18 19 LDADD.t_mktemp+= -Wl,--no-fatal-warnings 20 21 .include <bsd.test.mk> 22