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