aboutsummaryrefslogtreecommitdiffstats
path: root/text_cmds/grep/Makefile
blob: a54da9f0cb23fe9bc9bb1297c0fe690144166ab9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#	$NetBSD: Makefile,v 1.4 2011/02/16 01:31:33 joerg Exp $
#	$FreeBSD$
#	$OpenBSD: Makefile,v 1.6 2003/06/25 15:00:04 millert Exp $

PROG=	grep

SRCS=	file.c grep.c queue.c util.c

LINKS+=		${BINDIR}/grep ${BINDIR}/egrep \
		${BINDIR}/grep ${BINDIR}/fgrep \
		${BINDIR}/grep ${BINDIR}/rgrep \

MLINKS+=	grep.1 egrep.1 \
		grep.1 fgrep.1 \
		grep.1 rgrep.1

CFLAGS+=-DWITHOUT_FASTMATCH

LDADD+=-llzma -lbz2 -lz

.include <bsd.prog.mk>