diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 07:36:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-10-28 07:36:50 +0000 |
commit | e58cbdeb43a8203b2472a29ca98404ed89c6526e (patch) | |
tree | d57b6b7e2ffdec3f8b040a7f0fe18e22d112f90a /distrib/special/grep/Makefile | |
parent | cb4906f55fa7a49aa28397caa1074aa262893119 (diff) |
Use a Makefile.inc to share all the -Os and such options we use
Diffstat (limited to 'distrib/special/grep/Makefile')
-rw-r--r-- | distrib/special/grep/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/distrib/special/grep/Makefile b/distrib/special/grep/Makefile index 13010dcd190..a68bdc64433 100644 --- a/distrib/special/grep/Makefile +++ b/distrib/special/grep/Makefile @@ -1,12 +1,8 @@ -# $OpenBSD: Makefile,v 1.2 2003/06/22 22:24:41 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 2009/10/28 07:36:49 deraadt Exp $ PROG= grep SRCS= binary.c file.c grep.c mmfile.c queue.c util.c -MAN= -COPTS+=-Os -DNOZ +COPTS+= -DNOZ .PATH: ${.CURDIR}/../../../usr.bin/grep -#LDADD=-lz -#DPADD=${LIBZ} - .include <bsd.prog.mk> |