Home | History | Annotate | Line # | Download | only in grep
Makefile revision 1.2
      1 # $NetBSD: Makefile,v 1.2 2006/05/15 21:12:21 rillig Exp $
      2 
      3 PROG=	grep
      4 SRCS=	binary.c file.c grep.c mmfile.c queue.c util.c
      5 
      6 LINKS=  ${BINDIR}/grep ${BINDIR}/egrep	\
      7 	${BINDIR}/grep ${BINDIR}/fgrep	\
      8 	${BINDIR}/grep ${BINDIR}/zgrep	\
      9 	${BINDIR}/grep ${BINDIR}/zegrep	\
     10 	${BINDIR}/grep ${BINDIR}/zfgrep
     11 
     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
     17 
     18 LDADD=  -lz
     19 
     20 WARNS=	4
     21 
     22 .include <bsd.prog.mk>
     23