Home | History | Annotate | Line # | Download | only in grep
Makefile revision 1.1
      1 #	$Id: Makefile,v 1.1 2004/01/02 14:58:45 cjep Exp $
      2 
      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 MLINKS= grep.1 egrep.1 \
      9 	grep.1 fgrep.1 \
     10 	grep.1 zgrep.1
     11 
     12 CFLAGS+= -I/usr/local/include -Wall -pedantic
     13 
     14 LDADD=  -lz -L/usr/local/lib/ -liberty
     15 
     16 .include <bsd.prog.mk>
     17