aboutsummaryrefslogtreecommitdiffstats
path: root/text_cmds/grep
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-05-12 17:31:30 -0400
committerCameron Katri <me@cameronkatri.com>2021-05-12 17:31:30 -0400
commit7171a7ba0a0ea8d9b7216d9aae16539948222702 (patch)
treef20aab7b4f208c331334a4a94c89abe4b48a9ea7 /text_cmds/grep
parent68311c8bb2e7f974b5b91ad61f85980f432f2d7f (diff)
downloadapple_cmds-7171a7ba0a0ea8d9b7216d9aae16539948222702.tar.gz
apple_cmds-7171a7ba0a0ea8d9b7216d9aae16539948222702.tar.zst
apple_cmds-7171a7ba0a0ea8d9b7216d9aae16539948222702.zip
text_cmds: All done
Diffstat (limited to 'text_cmds/grep')
-rw-r--r--text_cmds/grep/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/text_cmds/grep/Makefile b/text_cmds/grep/Makefile
new file mode 100644
index 0000000..a54da9f
--- /dev/null
+++ b/text_cmds/grep/Makefile
@@ -0,0 +1,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>