freebsd-dev/gnu/usr.bin/grep/Makefile

15 lines
418 B
Makefile
Raw Normal View History

1993-06-29 06:04:45 +00:00
PROG= grep
1993-07-06 18:45:26 +00:00
SRCS= dfa.c grep.c getopt.c kwset.c obstack.c regex.c search.c
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
LINKS+= ${BINDIR}/grep ${BINDIR}/egrep \
${BINDIR}/grep ${BINDIR}/fgrep
1993-07-08 16:18:59 +00:00
MLINKS= grep.1 egrep.1 grep.1 fgrep.1
1993-07-06 18:45:26 +00:00
1993-07-08 16:18:59 +00:00
check: all
sh ${.CURDIR}/tests/check.sh ${.CURDIR}/tests
1993-06-29 06:04:45 +00:00
.include <bsd.prog.mk>