HardenedBSD/gnu/usr.bin/grep/Makefile

38 lines
880 B
Makefile
Raw Normal View History

1999-08-28 01:37:10 +02:00
# $FreeBSD$
1999-02-09 18:23:03 +01:00
MAINTAINER= wosch
GREP_LIBZ= YES
GREP_FTS= YES
1993-06-29 08:04:45 +02:00
PROG= grep
1995-01-11 06:07:00 +01:00
SRCS= dfa.c grep.c getopt.c kwset.c obstack.c search.c
1993-07-06 20:45:26 +02:00
CFLAGS+=-DGREP -DHAVE_STRING_H=1 -DHAVE_SYS_PARAM_H=1 -DHAVE_UNISTD_H=1 \
-DHAVE_GETPAGESIZE=1 -DHAVE_MEMCHR=1 -DHAVE_STRERROR=1 \
-DHAVE_VALLOC=1 -DHAVE_WORKING_MMAP=1
1993-07-06 20:45:26 +02:00
LINKS+= ${BINDIR}/grep ${BINDIR}/egrep \
${BINDIR}/grep ${BINDIR}/fgrep
1993-07-08 18:18:59 +02:00
MLINKS= grep.1 egrep.1 grep.1 fgrep.1
1993-07-06 20:45:26 +02:00
1995-01-11 06:07:00 +01:00
DPADD+= ${LIBGNUREGEX}
LDADD+= -lgnuregex
.if defined(GREP_LIBZ) && !empty(GREP_LIBZ)
LDADD+= -lz
DPADD+= ${LIBZ}
CFLAGS+= -DHAVE_LIBZ=1
LINKS+= ${BINDIR}/grep ${BINDIR}/zgrep \
${BINDIR}/grep ${BINDIR}/zegrep \
${BINDIR}/grep ${BINDIR}/zfgrep
1998-10-02 09:14:32 +02:00
MLINKS+= grep.1 zgrep.1 grep.1 zegrep.1 grep.1 zfgrep.1
.endif
.if defined(GREP_FTS) && !empty(GREP_FTS)
CFLAGS+= -DHAVE_FTS=1
.endif
1993-07-08 18:18:59 +02:00
check: all
sh ${.CURDIR}/tests/check.sh ${.CURDIR}/tests
1993-06-29 08:04:45 +02:00
.include <bsd.prog.mk>