blob: 088e7f36294095cb42bc19210c217a9a32c8d840 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: Makefile,v 1.4 2006/06/02 22:16:23 mrg Exp $
MKPRIVATELIB= yes
.include <bsd.own.mk>
LIB= grep
SRCS= \
dfa.c \
hard-locale.c \
kwset.c \
m-common.c \
m-fgrep.c \
m-regex.c \
memchr.c \
regex.c \
strdup.c
.include "${.CURDIR}/../Makefile.inc"
.PATH: ${DIST}/gettext/gettext-tools/libgrep
CPPFLAGS+= -I${DIST}/gettext/gettext-tools/libgrep
.include <bsd.lib.mk>
|