aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/grep/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/grep/Makefile')
-rw-r--r--gnu/usr.bin/grep/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/usr.bin/grep/Makefile b/gnu/usr.bin/grep/Makefile
new file mode 100644
index 000000000000..c8d491588091
--- /dev/null
+++ b/gnu/usr.bin/grep/Makefile
@@ -0,0 +1,14 @@
+PROG= grep
+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
+MLINKS= grep.1 egrep.1 grep.1 fgrep.1
+
+check: all
+ sh ${.CURDIR}/tests/check.sh ${.CURDIR}/tests
+
+.include <bsd.prog.mk>