diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-22 22:38:42 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-22 22:38:42 +0000 |
commit | 04f37f06e0eb1f4bacf7ec3d8d132cfd0c4287ad (patch) | |
tree | c9eb6ffc3f8d8ac81044b491b69ce087e1308f22 /usr.bin/grep/Makefile | |
parent | 450d908c18fbfbb76bbe36b9266fc85842f6e930 (diff) |
add DPADD
Diffstat (limited to 'usr.bin/grep/Makefile')
-rw-r--r-- | usr.bin/grep/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/grep/Makefile b/usr.bin/grep/Makefile index ce5bcd1528c..c09ebc8fc8e 100644 --- a/usr.bin/grep/Makefile +++ b/usr.bin/grep/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.3 2003/06/22 22:21:20 deraadt Exp $ +# $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 @@ -17,5 +17,6 @@ MLINKS= grep.1 egrep.1 \ CFLAGS+= -Wall -pedantic LDADD= -lz +DPADD= ${LIBZ} .include <bsd.prog.mk> |