[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / grep

File: [local] / src / usr.bin / grep / Makefile (download)

Revision 1.4, Sun Jun 22 22:38:41 2003 UTC (20 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.3: +2 -1 lines

add DPADD

#	$OpenBSD: Makefile,v 1.4 2003/06/22 22:38:41 deraadt Exp $

PROG=	grep
SRCS=	binary.c file.c grep.c mmfile.c queue.c util.c
LINKS=  ${BINDIR}/grep ${BINDIR}/egrep \
	${BINDIR}/grep ${BINDIR}/fgrep \
	${BINDIR}/grep ${BINDIR}/zgrep \
	${BINDIR}/grep ${BINDIR}/zegrep \
	${BINDIR}/grep ${BINDIR}/zfgrep \
	
MLINKS= grep.1 egrep.1 \
	grep.1 fgrep.1 \
	grep.1 zgrep.1 \
	grep.1 zegrep.1 \
	grep.1 zfgrep.1

CFLAGS+= -Wall -pedantic

LDADD=  -lz
DPADD=	${LIBZ}

.include <bsd.prog.mk>