26c7445164
YP is less and less used, split them to users have the choice to not
install them.
MFC after: 2 weeks
Sponsored by: Beckhoff Automation GmbH & Co. KG
Differential Revision: https://reviews.freebsd.org/D33441
(cherry picked from commit 5abb10faa1
)
22 lines
396 B
Makefile
22 lines
396 B
Makefile
# $OpenBSD: Makefile,v 1.8 2015/09/09 15:33:18 deraadt Exp $
|
|
# $FreeBSD$
|
|
|
|
PACKAGE= yp
|
|
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>
|