1999-08-27 19:37:10 -04:00
|
|
|
# $FreeBSD$
|
1999-02-09 12:23:03 -05:00
|
|
|
|
1999-11-22 04:13:43 -05:00
|
|
|
GREP_LIBZ=YES
|
1997-12-20 13:46:09 -05:00
|
|
|
|
1993-06-29 02:04:45 -04:00
|
|
|
PROG= grep
|
2004-07-04 06:05:37 -04:00
|
|
|
SRCS= closeout.c dfa.c error.c exclude.c grep.c grepmat.c hard-locale.c \
|
|
|
|
|
isdir.c kwset.c obstack.c quotearg.c savedir.c search.c xmalloc.c \
|
|
|
|
|
xstrtoumax.c
|
1993-07-06 14:45:26 -04:00
|
|
|
|
2004-02-17 00:38:45 -05:00
|
|
|
CFLAGS+=-I${.CURDIR} -I${DESTDIR}/usr/include/gnu -DHAVE_CONFIG_H
|
1999-11-22 04:13:43 -05:00
|
|
|
|
|
|
|
|
LINKS+= ${BINDIR}/grep ${BINDIR}/egrep \
|
1993-07-16 13:48:38 -04:00
|
|
|
${BINDIR}/grep ${BINDIR}/fgrep
|
1999-11-22 04:13:43 -05:00
|
|
|
MLINKS= grep.1 egrep.1 grep.1 fgrep.1
|
1993-07-06 14:45:26 -04:00
|
|
|
|
2004-02-05 17:44:25 -05:00
|
|
|
DPADD= ${LIBGNUREGEX} ${LIBBZ2}
|
|
|
|
|
LDADD= -lgnuregex -lbz2
|
2002-09-16 00:27:29 -04:00
|
|
|
|
|
|
|
|
LINKS+= ${BINDIR}/grep ${BINDIR}/bzgrep \
|
|
|
|
|
${BINDIR}/grep ${BINDIR}/bzegrep \
|
|
|
|
|
${BINDIR}/grep ${BINDIR}/bzfgrep
|
|
|
|
|
MLINKS+=grep.1 bzgrep.1 grep.1 bzegrep.1 grep.1 bzfgrep.1
|
1995-01-11 00:07:00 -05:00
|
|
|
|
1997-12-20 13:46:09 -05:00
|
|
|
.if defined(GREP_LIBZ) && !empty(GREP_LIBZ)
|
1999-11-22 04:13:43 -05:00
|
|
|
LDADD+= -lz
|
|
|
|
|
DPADD+= ${LIBZ}
|
|
|
|
|
CFLAGS+=-DHAVE_LIBZ=1
|
|
|
|
|
LINKS+= ${BINDIR}/grep ${BINDIR}/zgrep \
|
1997-12-21 14:15:12 -05:00
|
|
|
${BINDIR}/grep ${BINDIR}/zegrep \
|
1999-11-22 04:13:43 -05:00
|
|
|
${BINDIR}/grep ${BINDIR}/zfgrep
|
|
|
|
|
MLINKS+=grep.1 zgrep.1 grep.1 zegrep.1 grep.1 zfgrep.1
|
1997-12-20 13:46:09 -05:00
|
|
|
.endif
|
1999-10-28 06:34:55 -04:00
|
|
|
|
2000-01-18 04:52:00 -05:00
|
|
|
SUBDIR+=doc
|
1999-11-22 04:13:43 -05:00
|
|
|
|
1993-07-08 12:18:59 -04:00
|
|
|
check: all
|
1999-11-22 04:13:43 -05:00
|
|
|
@failed=0; total=0; \
|
|
|
|
|
for tst in ${TESTS}; do \
|
|
|
|
|
total=$$(($$total+1)); \
|
1999-11-22 04:48:04 -05:00
|
|
|
if GREP=${.OBJDIR}/${PROG} srcdir=${.CURDIR}/tests \
|
|
|
|
|
${.CURDIR}/tests/$$tst; then \
|
1999-11-22 04:13:43 -05:00
|
|
|
echo "PASS: $$tst"; \
|
|
|
|
|
else \
|
|
|
|
|
failed=$$(($$failed+1)); \
|
|
|
|
|
echo "FAIL: $$tst"; \
|
|
|
|
|
fi; \
|
|
|
|
|
done; \
|
|
|
|
|
if [ "$$failed" -eq 0 ]; then \
|
|
|
|
|
echo "All $$total tests passed"; \
|
|
|
|
|
else \
|
|
|
|
|
echo "$$failed of $$total tests failed"; \
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
TESTS= warning.sh khadafy.sh spencer1.sh bre.sh ere.sh status.sh empty.sh \
|
2004-07-04 06:05:37 -04:00
|
|
|
options.sh backref.sh file.sh
|
1993-06-29 02:04:45 -04:00
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|