ecebb3cc1d
This would allow interested parties to do experimental runs with an environment set appropriately to raise all the warnings throughout the build; e.g. env WARNS=6 NO_WERROR=yes buildworld. Not currently touching the numerous instances in ^/tools. MFC after: 1 week
21 lines
384 B
Makefile
21 lines
384 B
Makefile
# $OpenBSD: Makefile,v 1.8 2015/09/09 15:33:18 deraadt Exp $
|
|
# $FreeBSD$
|
|
|
|
PROG= ypldap
|
|
SRCS= parse.y ypldap.c log.c \
|
|
ldapclient.c entries.c yp.c \
|
|
aldap.c ber.c \
|
|
ypldap_dns.c
|
|
|
|
MAN= ypldap.8 ypldap.conf.5
|
|
|
|
LIBADD= openbsd event1 util rpcsvc
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
CFLAGS+=-I${SRCTOP}/contrib/pf/libevent
|
|
CFLAGS+=-I${SRCTOP}/lib/libopenbsd
|
|
|
|
WARNS?= 2
|
|
|
|
.include <bsd.prog.mk>
|