make the open failed message a bit more standard
[unix-history] / usr / src / usr.bin / grep / egrep / Makefile
CommitLineData
86d5645c
KB
1# @(#)Makefile 5.1 (Berkeley) %G%
2
3# -DSLOWSYS invoke xread() for system time quirk on PDP, others?
4# -DNOKANJI default is for Japanese Unix. undef only for raw
5# parity-marked search capability, not standard w/grep.
6# -DCHINESE for systems using EUC Chinese2 codes
7# -Dstrrchr=rindex, -Dstrchr=index as necessary
8
9PROG= egrep
10CFLAGS+=-Dstrrchr=rindex -Dstrchr=index -DNOKANJI
11MAN1= grep.0
12LINKS= ${BINDIR}/egrep ${BINDIR}/grep ${BINDIR}/egrep ${BINDIR}/fgrep
13MLINKS= grep.1 egrep.1 grep.1 fgrep.1
14
15.include "../../Makefile.inc"
16.include <bsd.prog.mk>