1# @(#)Makefile 8.1 (Berkeley) 06/27/93 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 11LDADD= -lcompat # must search compat to get spencers early regexp package 12MAN1= grep.0 13LINKS= ${BINDIR}/egrep ${BINDIR}/grep ${BINDIR}/egrep ${BINDIR}/fgrep 14MLINKS= grep.1 egrep.1 grep.1 fgrep.1 15 16.include "../../Makefile.inc" 17.include <bsd.prog.mk> 18