1 # $NetBSD: Makefile,v 1.7 2014/01/19 21:50:17 apb Exp $ 2 # 3 .include <bsd.own.mk> 4 5 ATFFILE= no 6 TESTSDIR= ${TESTSBASE}/lib/libcurses 7 TESTS_C+= slave 8 9 PROG= slave 10 NOMAN= "true" 11 #MAN= slave.7 12 SRCS= slave.c commands.c curses_commands.c 13 14 CPPFLAGS+= -I${.CURDIR} -I. -I${.CURDIR}/../director 15 LDADD+= -lcurses -lterminfo -Wl,--no-fatal-warnings 16 17 COPTS.curses_commands.c += -Wno-format-nonliteral 18 CWARNFLAGS.clang+= -Wno-format 19 20 .include <bsd.test.mk> 21