blob: 8eb8633b89dc81837fe4113741fda7b95f0cb885 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.5 2004/11/02 21:12:15 pefo Exp $
LIB= smutil
SRCS= debug.c err.c lockfile.c safefile.c snprintf.c cf.c
ENVDEF= -DNOT_SENDMAIL
.if ${MACHINE_ARCH} == mips64
CFLAGS+= -fno-stack-protector
.endif
# This is not a library that gets installed so only build the .a version
NOPROFILE=1
NOPIC=1
.include <bsd.lib.mk>
|