add opendir alias
[minix.git] / commands / grep / Makefile
blobdb64ccd7711c037d026da4782183666331688d8d
1 # $OpenBSD: Makefile,v 1.5 2003/06/23 07:52:18 deraadt Exp $
3 PROG= grep
4 SRCS= binary.c file.c grep.c mmfile.c queue.c util.c
5 LINKS= ${BINDIR}/grep ${BINDIR}/egrep \
6 ${BINDIR}/grep ${BINDIR}/fgrep \
7 ${BINDIR}/grep ${BINDIR}/zgrep \
8 ${BINDIR}/grep ${BINDIR}/zegrep \
9 ${BINDIR}/grep ${BINDIR}/zfgrep \
11 OPSYS!= uname
12 MLINKS= grep.1 egrep.1 \
13 grep.1 fgrep.1 \
14 grep.1 zgrep.1 \
15 grep.1 zegrep.1 \
16 grep.1 zfgrep.1
18 LDADD= -lz
19 DPADD= ${LIBZ}
21 CFLAGS+= -Wall
23 .include <bsd.prog.mk>