Home | History | Annotate | Line # | Download | only in grep
Makefile revision 1.1.1.1
      1  1.1  cjep #	$Id: Makefile,v 1.1.1.1 2004/01/02 14:58:45 cjep Exp $
      2  1.1  cjep 
      3  1.1  cjep PROG=	grep
      4  1.1  cjep SRCS=	binary.c file.c grep.c mmfile.c queue.c util.c
      5  1.1  cjep LINKS=  ${BINDIR}/grep ${BINDIR}/egrep \
      6  1.1  cjep 	${BINDIR}/grep ${BINDIR}/fgrep \
      7  1.1  cjep 	${BINDIR}/grep ${BINDIR}/zgrep
      8  1.1  cjep MLINKS= grep.1 egrep.1 \
      9  1.1  cjep 	grep.1 fgrep.1 \
     10  1.1  cjep 	grep.1 zgrep.1
     11  1.1  cjep 
     12  1.1  cjep CFLAGS+= -I/usr/local/include -Wall -pedantic
     13  1.1  cjep 
     14  1.1  cjep LDADD=  -lz -L/usr/local/lib/ -liberty
     15  1.1  cjep 
     16  1.1  cjep .include <bsd.prog.mk>
     17