blob: b2afa30d4129c3a4863fcc23dfc444f1fe337766 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $OpenBSD: Makefile,v 1.7 2014/01/18 05:54:52 martynas Exp $
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
DPADD= ${LIBEVENT} ${LIBUTIL}
LDADD= -levent -lutil
CFLAGS+= -I${.CURDIR}
CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
.include <bsd.prog.mk>
|