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/libstubs | |
parent | cb4906f55fa7a49aa28397caa1074aa262893119 (diff) |
Use a Makefile.inc to share all the -Os and such options we use
Diffstat (limited to 'distrib/special/libstubs')
-rw-r--r-- | distrib/special/libstubs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/special/libstubs/Makefile b/distrib/special/libstubs/Makefile index 2654de0a9a1..c73bad0c497 100644 --- a/distrib/special/libstubs/Makefile +++ b/distrib/special/libstubs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2009/10/28 07:34:36 guenther Exp $ +# $OpenBSD: Makefile,v 1.4 2009/10/28 07:36:49 deraadt Exp $ .include <bsd.own.mk> LIB= stubs @@ -6,9 +6,9 @@ SRCS= db.c setlocale.c sha2.c getgrent.c getpwent.c \ ethers.c getaddrinfo.c gethostnamadr.c getnetnamadr.c NOPIC= Yes NOPROFILE=Yes -NOMAN=1 +NOMAN= 1 -CFLAGS+=-Os -D__DBINTERFACE_PRIVATE -DSHA256_ONLY -UYP -I${LIBCSRCDIR}/include +CFLAGS+=-D__DBINTERFACE_PRIVATE -DSHA256_ONLY -UYP -I${LIBCSRCDIR}/include LIBCSRCDIR=${.CURDIR}/../../../lib/libc |