1 # $NetBSD: Makefile,v 1.1 2016/01/12 22:58:03 christos Exp $ 2 3 LIBISPRIVATE= yes 4 5 .include <bsd.own.mk> 6 7 LIB= grep 8 SRCS= \ 9 dfa.c \ 10 hard-locale.c \ 11 kwset.c \ 12 m-common.c \ 13 m-fgrep.c \ 14 m-regex.c \ 15 memchr.c \ 16 regex.c \ 17 strdup.c 18 19 .include "${.CURDIR}/../../Makefile.inc" 20 21 .PATH: ${DIST}/gettext-tools/libgrep 22 CPPFLAGS+= -I${DIST}/gettext-tools/libgrep 23 24 COPTS.regex.c = -Wno-stack-protector 25 26 WARNS?= 0 # pointer sign issues 27 28 CWARNFLAGS.clang+= -Wno-unused-value 29 30 .include <bsd.lib.mk> 31